checkbox的特性是可以选中或者取消,有时需要利用这一点做一个类似radio的选项框;
<input type="checkbox" class="aa"> <input type="checkbox" class="aa"> <input type="checkbox" class="aa"> <script> $(".aa").click(function(event) { /* Act on the event */ var num = $(".aa").index($(this)); $(".aa").removeAttr(‘checked‘); $(".aa").eq(num).prop(‘checked‘, ‘true‘); }); </script>
时间: 2024-10-21 13:52:42