我正在尝试获取< iframe> d文档的高度。我的第一直觉是:
$('iframe').document.height();
或
$('iframe').contentWindow.document.height();
那些不起作用,我没有太多的运气搜索。我将不胜感激任何帮助!
答案 0 :(得分:2)
$("iframe",top.document).contents().height();
alert("iframe height=" + $("iframe",top.document).height());
答案 1 :(得分:0)
试试这个:
$(document).ready(function(){
$("iframe").bind('mouseover', function(){
alert($(this).contents().height());
});
});