我正在尝试根据 iframe 的内容动态更改 iframe 的高度。
但是它不适用于最新版本的 chrome。
文档是'undefined'
chrome。
它在 Firefox 中运行良好。
我究竟做错了什么?
<script>
$(function() {
$('#iframeid')
.load(
function() {
try {
var doc = this.contentDocument ? this.contentDocument
: this.contentWindow.document;
alert(doc);
} catch (e) {
alert(e.message);
}
});
});
</script>
<iframe frameborder="0" id="iframeid" src="iframesource2.html"
height="1px"> </iframe>