체크박스 작동 중 문제 발생
모두 선택
$ ("input[type='checkbox']").each(function(){
this.checked=true
})
반전
$("input[type='checkbox' ] ").each(function(){
if(this.checked){
this.checked=false
}
else{
this.checked=true
}
이론적으로는 $(obj).attr("checked",true) 를 사용하여 evil을 수행하는 것이 가능해야 합니다. 그러나 IE에서는 잘 작동하지만 fifox에서는 검사 방지 효과가 실패합니다. . $(obj).removeattr ("checked")가 작동하지 않습니다. 무슨 일이 일어나고 있는지 모르겠습니다.
js를 사용하여 dom 속성을 직접 조작하면 됩니다.