根據id獲取元素的寬度的方法

埃菲尔上的加菲猫發表於2024-05-18

1.方式一

document.getElementById("app").style.width
2.方式二:
const el = document.getElementById('app')
console.log(window.getComputedStyle(el).width)

相關文章