标签:
只需要把input[i].setAttribute(‘checked‘,true);改成input[i].checked=true;
input[i].removeAttribute(‘checked‘);改成input[i].checked=false;就好了
因为setAttribute设置的是input的attribute属性,而如果在点击全选之前,选中了一个input,但是input这个节点并没有增加checked这个属性,这里没有增加的checked是
attribute属性,在选中这个input的时候,增加的应该是js对象input的property属性,所以也可以用jquery中的方法.prop()去修改checked的值,这里的input[i].checked=true;修改的也是js对象input的property属性。
标签:
原文地址:http://www.cnblogs.com/ww-ervin-72/p/5055643.html