Radio
-
jquery radio, checkbox 체크가 되지 않을때프로그래밍/jquery 2016. 7. 22. 13:39
j Query radio, checkbox 체크가 되지 않을때 기존에 속성을 동적으로 이벤트를 주기 위해서 attr 메서드를 흔히 사용했었는데 어느날 갑자기 작동을 하지 않고 있습니다. jQuery 1.6버전 부터 기존 attr 매서드의 기능이 attr과 prop로 나뉘어진걸 이제 알았네요ㅠㅠ 예제 $("input:checkbox[name='where']").attr("checked", true); `attr` => `prop`로 변경 $("input:checkbox[name='where']").prop("checked", true); 도움이 되셨나요?