jquery checkbox实现单选功能



function setCheckbox() {
$(':checkbox[name=cb]').each(function(){
$(this).click(function(){
if($(this).attr('checked')){
$(':checkbox[name=cb]').removeAttr('checked');
$(this).attr('checked','checked');
}
});
});
};












你可能感兴趣的:(js)