需要準備的材料分別有:電腦、瀏覽器、html編輯器。
1、首先,打開html編輯器,新建html文件,例如:index.html,編寫問題基礎代碼。
2、在index.html中的<script>標簽,輸入js代碼: $('input').click(function () { var now = this; $('input').each(function (i, e) { if (now !== e) { $(e).attr('checked', false); } }) });
3、瀏覽器運行index.html頁面,此時每打鉤一個checkbox,都會取消其它checkbox的打鉤。
<style>.class1{font-weight:bold;font-size:45px;}.class2{color:red;}</style><div class="class1 class2">asdfa</div>更多的類,同理
可以一行寫多個標簽的,但是要記住通過空格隔開。