jquery 如何找到Iframe内容的滚动高度和滚动宽度?

zzzyeukh  于 2023-01-04  发布在  jQuery
关注(0)|答案(1)|浏览(263)

我是新来的这个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();
}

请帮帮忙。

6vl6ewon

6vl6ewon1#

尝试下面的代码...它会帮助你...它完美地为我工作...

<!DOCTYPE html>
<html>

<script>
function Sam()
{
var iFrameID = document.getElementById('idIframe');
var hasHorizontalScroll= iFrameID.contentWindow.document.body.scrollWidth>iFrameID.contentWindow.document.body.clientWidth;
var hasVerticalScroll= iFrameID.contentWindow.document.body.scrollHeight>iFrameID.contentWindow.document.body.clientHeight;

alert(" Horiz : " + hasHorizontalScroll);
alert(" Verti : " + hasVerticalScroll);
}
</script>
<body>

<iframe src="http://www.w3schools.com" id="idIframe">
  <p>Your browser does not support iframes.</p>
</iframe>

<input type="button" value="find" onclick="Sam();">

</body>
</html>

相关问题