如何根据内容重新调整iframe的大小
这是我的HTML代码
<body>
<iframe id="test" src="http://www.bbc.co.uk/urdu/"></iframe>
</body>
这是我的jquery代码
$(document).ready(function () {
setInterval(function () {
stretchHeight();
}, 5000);
function stretchHeight() {
$("#test").height($("#test").contents().find("html").height());
}
});
我没有间隔尝试但当时也没有工作 所以,请帮帮我 提前致谢
答案 0 :(得分:1)
无法访问跨域iframe中的html,因为这会带来安全风险。需要手动定义宽度和高度。
HTH