是否有任何方法可用于动态调整 iframe(加载外部站点)的高度?
或者
有什么方法可以检查 iframe 是否存在滚动条?
尝试这个:
// 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()
});
});