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="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>

좋은 웹페이지 즐겨찾기