Heim  >  Artikel  >  Web-Frontend  >  JQuery自适应IFrame高度(支持嵌套 兼容IE,ff,safafi,chrome)_jquery

JQuery自适应IFrame高度(支持嵌套 兼容IE,ff,safafi,chrome)_jquery

WBOY
WBOYOriginal
2016-05-16 18:09:181373Durchsuche
复制代码 代码如下:

function adjustIFramesHeightOnLoad(iframe) {
var iframeHeight = Math.min(iframe.contentWindow.window.document.documentElement.scrollHeight, iframe.contentWindow.window.document.body.scrollHeight);
$(iframe).height(iframeHeight);
}

失败的测试就不说了,来直接的。
两个链接和iframe:
复制代码 代码如下:

js代码:
复制代码 代码如下:



这里的find("#content")是找出iframe内容文档中的id为content的高度(另外比如find("body")),并设置给iframe,
类似的还可以设置宽度,留给需要的朋友尝试吧。
这样就解决了iframe不会因为内容过大被挡住的问题(因为我设置了scrolling="no")。
PS:基本上我会优先考虑使用iframe来实现无刷新,兼容浏览器的后退按钮;而且使用iframe加载flash是很爽的,不用写什么js调用,object标签,还符合W3C标准。
2008年11月28日17:13:31 ,今天使用过程中根据实际情况进行了一下改良,代码如下:
复制代码 代码如下:



另发现使用find("body")不太好使,高度不准确。
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn