遇到操作checkbox的問題全選 複製程式碼 程式碼如下: this.checked=true }) 反選$("input[type='checkbox'] ").each(function(){if(this.checked){ this.checked=false } } 理論上是應該可以用$(obj).attr("checked",true)來操作惡但是在ie下正常,在firfox下反選效果卻失靈了,$(obj).removeattr ("checked")不起作用,不知道怎麼回事。