码迷,mamicode.com
首页 > 其他好文 > 详细

JQ attr prop 区别

时间:2018-12-19 18:41:34      阅读:103      评论:0      收藏:0      [点我收藏+]

标签: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
版权声明:本文为博主原创文章,转载请附上博文链接!

JQ attr prop 区别

标签:ted   版权   http   方法   his   原创文章   tail   作者   tps   

原文地址:https://www.cnblogs.com/Yusco/p/10145011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!