我是这个 Jquery 的新手,当 iframe 托管外部网页时,我很难找到 iframe 的滚动高度和滚动宽度。我尝试了以下代码,但它不起作用,我搜索了很多。
$.fn.hasVerticalScrollbar = function () {
// This will return true, when the div has vertical scrollbar
return $frame[0].document.documentElement.offsetHeight() > this.height();
}
$.fn.hasHorizontalScrollbar = function () {
// This will return true, when the div has horizontal scrollbar
return $frame[0].document.documentElement.offsetWidth() > this.width();
}
请帮忙。