如何获得iframe的高度?

时间:2018-02-28 13:44:50

标签: javascript iframe attributes height

我正在努力获得iframe的高度。在此页面上:http://www1.voetbalzone.nl/inbeeld.asp?uid=321576&vztest=1

您需要刷新几次才能看到紫色横幅300x600。

紫色图片包含在iframe中,内容为id = google_ads_iframe_ / 67970281 / DISPLAY_OWNED__NL / Voetbalzone / Photos / Top_MPU_0“,其高度=”600“。

我需要获取高度值,即600,但有些我无法访问该对象。可能有多个iframe并且iframe尚未完全加载。香港专业教育学院尝试过setTimeout,即使这样也行不通。

$(document).ready(function(){

function makeYellow(){
$('#div-gpt-ad-1477555354937-3 iframe').css("border", "5px solid yellow !important");
}
setTimeout(makeYellow, 2000);

});

有人能帮帮我吗?谢谢

1 个答案:

答案 0 :(得分:0)

首先触发iframe:

$(document).ready(function(){     function makeYellow(){     $('#div-gpt-ad-1477555354937-3 iframe')。css(“border”,“5px solid yellow!important”);     }     setTimeout(makeYellow,2000); });

但即使这样也不行:/