JavaScript獲取css的值

littleHiuman發表於2020-12-25

1. 拿到元素的內聯樣式:elem.style.xxx

2. 拿到元素的位置資訊:getComputedStyle(elem)

3. 拿到元素的計算樣式:elem.getBoundingClientRect()

 

相關文章