调整 iframe 的大小以适应其内容

假设frame表示 iframe 元素。

1
2
3
4
5
6
7
8
frame.addEventListener('load', function () {
// Get the height of the content
const height = frame.contentDocument.body.scrollHeight;

// Set the height of iframe
frame.setAttribute('height', `${height}px`);
});


调整 iframe 的大小以适应其内容
https://huangzunxue998.top/2023/04/14/调整-iframe-的大小以适应其内容/
Author
黄dada
Posted on
April 14, 2023
Licensed under