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

元素的属性相关操作element.getAttribute('xxx'),element.setAttribute('xxx','xxx'),element.removeAttribute('xxx')

时间:2019-12-20 16:55:50      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:type   getattr   html   utf-8   相关   lan   属性   alert   round   

 

 

 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6 </head>
 7 <body>
 8 <div id="demo" class="one" title="鼠标经过"></div>
 9 <script>
10     var demo = document.getElementById("demo");
11     alert(demo.getAttribute("title"));
12     demo.setAttribute("class","two");
13     demo.removeAttribute("title");
14 
15 </script>
16 </body>
17 </html>

元素的属性相关操作element.getAttribute('xxx'),element.setAttribute('xxx','xxx'),element.removeAttribute('xxx')

标签:type   getattr   html   utf-8   相关   lan   属性   alert   round   

原文地址:https://www.cnblogs.com/ustc-yy/p/12073839.html

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