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

自定义属性

时间:2021-02-23 14:14:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:col   code   pre   自定义   script   getattr   属性   body   style   

技术图片

 

 

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>自定义属性的获取</title>
    <style>

    </style>
</head>
<body>
<div id="wrap" date-index = 10>
</div>
<script>

    var div = document.getElementById(wrap);
    //获取属性方法1  element.属性名
    console.log(div.id);

    //获取属性方法2
    //element.getAttribute(‘属性名‘);
    console.log(div.getAttribute(date-index));

    //两者的区别
    //element.属性名 获取的是系统内置的属性
    //element.getAttribute(); 可以获取自定义的属性 [ 程序员自己定义的属性 ]

</script>
</body>
</html>

 

自定义属性

标签:col   code   pre   自定义   script   getattr   属性   body   style   

原文地址:https://www.cnblogs.com/fuyunlin/p/14430384.html

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