js 自定义属性操作
自定义属性操作
element.属性 获取内置属性值
element.getAttribute("属性") 我们自己添加的属性叫自定义属性
element.setAttribute("属性","值") 主要针对与自定义属性
移除属性
element.removeAttrribute("属性")
1 <div id="box" index='7' class="first">ssss</div> 2 <script> 3 // element.getAttribute 4 var div = document.getElementById("box") 5 console.log(div.getAttribute("id")); 6 div.id = 'text' 7 div.setAttribute("index", 2) 8 div.setAttribute("class", "footer") 9 </script>