如何使用jQuery引用<iframe>的文档来获取其height()?</iframe>

时间:2009-10-13 18:56:39

标签: javascript jquery iframe document

我正在尝试获取&lt; iframe&gt; d文档的高度。我的第一直觉是:

$('iframe').document.height();

$('iframe').contentWindow.document.height();

那些不起作用,我没有太多的运气搜索。我将不胜感激任何帮助!

2 个答案:

答案 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());
    });

});