属性操作
property accessor
getAttribute/setAttribute
dataset
property accessor
-
读
-
写
-
类型
String
Number
Boolean
Function
getAttribute/setAttribute
-
读
-
写
-
类型
String
dataset
HTMLElement.dataset
data-* 属性集
元素上保存数据
样式操作
CSS > DOM
document.styleSheets // 外部样式表和内部样式表
element.style // 内嵌样式表
element.sheet.cssRules[1].style.lineHeight // p标签里面的line-height属性
element.sheet.cssRules[1].selectorText // p标签
element.style.color // 内嵌样式表里面的color值
element.style.cssText = 'border-color:read;color:red;';
element.className = 'class'; //设置element的class值为class
window.getComputedStyle()
获取到element对象的color
原文链接:https://www.f2er.com/note/422409.html