标签:ted 版权 http 方法 his 原创文章 tail 作者 tps
解决方法:使用prop属性代替attr属性
一、Attr
除 checked, selected, 或 disabled状态属性外,其余的属性均可用attr()设置和修改。
$("img").attr("src");
$("img").attr("src");
$("img").attr("src","test.jpg");
$("img").attr("src","test.jpg");
二、Prop
用于checked, selected 或 disabled状态属性的设置和修改
$("#allBtn").bind("click",function() {
var status = this.checked;
$("input[type=checkbox]").each(function(i, dom){
$(dom).prop("checked", status);
});
});
---------------------
作者:云_飞扬
来源:CSDN
原文:https://blog.csdn.net/qq_38627581/article/details/78729665
版权声明:本文为博主原创文章,转载请附上博文链接!
标签:ted 版权 http 方法 his 原创文章 tail 作者 tps
原文地址:https://www.cnblogs.com/Yusco/p/10145011.html