IE edge 下 clientWidth 为 0 的坑,Chrome 正常

在IE下,渲染的 dom 元素初始 clientWidth 为 0,而 scrollWidth 有效。
而 chrome 表现则为一致。

Code

const tableWrapper = this.$refs.tableWrapper
const { scrollWidth, clientWidth } = tableWrapper
console.log(scrollWidth, clientWidth)

Chrome

IE edge

猜你喜欢

转载自www.cnblogs.com/givingwu/p/10277161.html