熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

js操作checkbox遇到的問題解決

2022-06-13   來源: JSP教程 

  遇到操作checkbox的問題
全選

復制代碼 代碼如下:
$("input[type=checkbox]")each(function(){
thischecked=true
})
反選
$("input[type=checkbox]")each(function(){
if(thischecked){
thischecked=false
}
else{
thischecked=true
}

  
理論上是應該可以用$(obj)attr("checked"true)來操作惡但是在ie下正常在firfox下反選效果卻失靈了$(obj)removeattr("checked")不起作用不知道怎麼回事
干脆直接用js操作dom屬性沒有問題


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19930.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.