首页 > 代码库 > Jquery实现复选框只能单选
Jquery实现复选框只能单选
<html> <head> <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> </head> <body> <div id="divckb"> <input type="checkbox" name="ckb1" value="http://www.mamicode.com/1" />张三 <input type="checkbox" name="ckb2" value="http://www.mamicode.com/2" />李四 <input type="checkbox" name="ckb3" value="http://www.mamicode.com/3"/>王五 <input type="checkbox" name="ckb4" value="http://www.mamicode.com/4" />赵六 </div> <script> $(function(){ $("#divckb input").each(function(){ $(this).change(function(){ var test= $(this).attr("checked"); if($(this).attr("checked")){ //此处写你的处理 //$("#divckb input").each(function(){ // //alert($(this).val()); // // if(test== $(this).attr("checked")){ // $(this).attr("checked",false); // //alert($(this).val()+"-1"); // }else{ // $(this).attr("checked",false); // //alert($(this).val()+"-2"); // } //}); } else{ $(this).attr("checked",true); $(this).siblings().each(function(){ $(this).attr("checked",false); }); //此处写你的处理 } }); }); }); </script> </body> </html>
本文出自 “KangSafe” 博客,请务必保留此出处http://kangsafe.blog.51cto.com/5686165/1530338
Jquery实现复选框只能单选
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。