我正在使用这个脚本:Set iframe content height to auto resize dynamically,我只有3个iframe,而且这个脚本只适用于一个而不适用于3,我该怎么办?
以下是我的页面中显示iframe的代码段:
<script type='text/javascript'>
function setIframeHeight(iframeId) {
var ifDoc, ifRef = document.getElementById( iframeId );
try {
ifDoc = ifRef.contentWindow.document.documentElement;
} catch (e) {
try {
ifDoc = ifRef.contentDocument.documentElement;
} catch (ee) { }
}
if (fDoc) {
ifRef.height = 1;
ifRef.height = ifDoc.scrollHeight;
}
</script>
<iframe id="contentFrame" scrolling="no" frameborder="0" width="100%"
src="http://ivomenezes.com/frames/home.php"
onload="setIframeHeight('contentFrame')"> </iframe>