라디오버튼1 라디오버튼 체크해제기능 추가. html속성특성상 라디오버튼은 한번 클릭하면 다시 해제가 불가한데 누군가가 집요하게 요구하여 만듬jquery 이용 $("input[type=radio]").each(function(){ var chk = $(this).is(":checked"); var name = $(this).attr('name'); if(chk == true) $("input[name='"+name+"']").data("previous",$(this).val());});$("input[type=radio]").click(function(){ var pre = $(this).data("previous"); var chk = $(this).is(":checked"); var name = $(this).attr('name'); if(ch.. 2015. 3. 6. 이전 1 다음