我有很多iframe,我希望iframe
中的每一个都有height
和width
相同的内容。
例如:如果iframe
内容为1300x300
,我需要在我的网页上iframe
为1300x300
。我正在加载来自我的域名的iframe。
答案 0 :(得分:0)
尝试以下代码并检查
//添加
<script>
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
//更改iframe
<iframe src="..." frameborder="0" scrolling="no" onload="resizeIframe(this)" />