首页 > 代码库 > 属性模块

属性模块

setAttributegetAttributeremoveAttribute
var el = document.createElement("div")el.setAttribute("xxx", "1")el.setAttribute("XxX", "2")el.setAttribute("XXx", "3")console.log(el.getAttribute("xxx"))console.log(el.getAttribute("XxX"))

 

属性模块