我在自己的域和 joomla 中托管 iframe!我已经设置了一个 iframe 包装器。我给出的网址开始于http://www.
我的设置是:
scroll bars: auto
width: 100%
height: 500
auto height: yes
auto add: no
我的两个浏览器都给我一个 javascript 错误(null 不是对象):使用 safari、firefox 和 chrome。此错误指向 joomla 核心中的脚本:
<script type="text/javascript">
function iFrameHeight() {
var h = 0;
if (!document.all) {
h = document.getElementById('blockrandom').contentDocument.height;
document.getElementById('blockrandom').style.height = h + 60 + 'px';
} else if (document.all) {
h = document.frames('blockrandom').document.body.scrollHeight;
document.all.blockrandom.style.height = h + 20 + 'px';
}
}
</script>
这使我的包装器保持在 500px 高度,我希望它根据 iframe 的高度自动添加。
我可以用什么代替这个功能?在此先感谢,劳伦特。