1. 程式人生 > >將頁面中所有的checkbox設成單選得

將頁面中所有的checkbox設成單選得

name checked div each 頁面 style ont check ext

$(function () { var allBox = $(":checkbox"); allBox.click(function () { allBox.removeAttr("checked"); $(this).attr("checked", "checked"); }); }); $(function(){ $(‘:checkbox[name=jcxflIds]‘).each(function(){ $(this).click(function(){ if($(this).attr(‘checked‘)){ $(‘:checkbox[name=jcxflIds]‘).removeAttr(‘checked‘); $(this).attr(‘checked‘,‘checked‘); } }); }); });

將頁面中所有的checkbox設成單選得