继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Jquery实现复选框只能单选

慕田峪是谁我也不认识
关注TA
已关注
手记 271
粉丝 40
获赞 95

         

<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="1" />张三<input type="checkbox" name="ckb2" value="2" />李四<input type="checkbox" name="ckb3" value="3"/>王五<input type="checkbox" name="ckb4" value="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>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP