checkbox变成单选型

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>

 

你可能感兴趣的:(checkbox变成单选型)