jquery checkbox实现单选小例_jquery
程序员文章站
2022-05-31 08:04:09
...
复制代码 代码如下:
$(function(){
$(':checkbox[name=flag]').each(function(){
$(this).click(function(){
if($(this).attr('checked')){
$(':checkbox[name=flag]').removeAttr('checked');
$(this).attr('checked','checked');
}
});
});
});
同意
不同意
上一篇: PostgreSQL 常用维护操作