是否有任何方法可以动态调整iframe(加载外部网站)的高度?
OR
有没有办法检查iframe是否有滚动条?
答案 0 :(得分:0)
试试这个:
// Get the iFrame jQuery Object
var $MyFrame = $("#iframeid");
// You need to wait for the iFrame content to load first
// So, that the click events work properly
$MyFrame.load(function () {
var frameBody = $MyFrame.contents().find('body');
// Set the iFrame height
$MyFrame.css({
height: frameBody.outerHeight()
});
});