Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 232 Bytes

获取样式.md

File metadata and controls

9 lines (6 loc) · 232 Bytes

获取样式

使用 Window.getComputedStyle() 获取指定元素的 CSS 规则的值。

const getStyle = (el, ruleName) => getComputedStyle(el)[ruleName]

getStyle(document.querySelector('p'), 'font-size') // '16px'