码迷,mamicode.com
首页 > Web开发 > 详细

JS——特殊情况

时间:2017-11-21 18:43:40      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:set   图片   attribute   情况   attr   col   doc   属性   att   

1、绑定属性:

(1)元素节点.属性或元素节点[属性]绑定的属性不会出现在标签中,setAttribute可以出现在标签中。

(2)setAttribute获取不到元素节点.属性形式绑定的属性值,同样元素节点.属性也获取不到setAttribute绑定的属性值

<body>
    <div id="box"></div>
    <script>
        var box = document.getElementById("box");
        box.add = "add";
        console.log(box.add);//add
        box.setAttribute("yes", "yes");
        console.log(box.getAttribute("yes"));//yes
        console.log(box.yes);//undefined
        console.log(box.getAttribute("add"));//null
    </script>
</body>

技术分享图片

JS——特殊情况

标签:set   图片   attribute   情况   attr   col   doc   属性   att   

原文地址:http://www.cnblogs.com/wuqiuxue/p/7874586.html

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