1

我想检查<body>的宽度变化(不是高度)。

有没有办法用 ResizeObserver 做到这一点?

4

1 回答 1

3

这是一个例子。在https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver阅读更多文档。

function handleWidthChange (width) {
  console.log(width);
}

let prevWidth = 0;

const observer = new ResizeObserver(entries => {
  for (const entry of entries) {
    const width = entry.borderBoxSize?.[0].inlineSize;
    if (typeof width === 'number' && width !== prevWidth) {
      prevWidth = width;
      handleWidthChange(width);
    }
  }
});

observer.observe(document.body, {box: 'border-box'});
于 2021-08-03T02:29:49.457 回答