Iframe の自動高さを使用しようとしていますが、最も役に立ったコードは次のとおりです。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>THE IFRAME HOLDER</title>
<script>
function alertsize(pixels){
pixels+=32;
document.getElementById('myiframe').style.height = pixels+"px";
}
</script>
</head>
<body style="background:silver;">
<iframe src='theiframe.htm' style='width:458px;background:white;' frameborder='0' id="myiframe" scrolling="auto"></iframe>
</body>
</html>
iframe: 「theiframe.htm」という名前で保存します
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>IFRAME CONTENT</title>
<script>
function toggle(obj) {
var el = document.getElementById(obj);
if ( el.style.display != 'block' ) el.style.display = 'block';
else el.style.display = 'none';
parent.alertsize(document.body.scrollHeight);
}
</script>
</head>
<body onload="parent.alertsize(document.body.scrollHeight); " >
<a href="javascript:toggle('moreheight')">toggle height?</a><br />
<div style="display:none;" id="moreheight">
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
more height!<br />
</div>
text<br />
text<br />
text<br />
text<br />
text<br />
text<br />
text<br />
text<br />
THE END
<div style="clear:both;"></div>
</body>
</html>
IE、Opera、Firefox では問題なく動作します。Chrome と Safari では、動作しないようです。友人は、問題はおそらくここにあると言いました:
onload="parent.alertsize(document.body.scrollHeight);"
Chrome での例: http://www.warezexpress.com/ups/2009_setembro/chrome.jpg
Safari での例: (iframe は拡大し、減少しません) http://www.warezexpress.com/ups/2009_setembro/safari.jpg
しかし、これを解決するための JavaScript はまだ理解できません。このコードをフォーラムで用意しました。一言ありがとう!