JQuery自适应IFrame高度(支持嵌套兼容IE,ff,safafi,chrome)_jquery
时间:2021-07-01 10:21:17
帮助过:2人阅读
代码如下:
function adjustIFramesHeightOnLoad(iframe) {
var iframeHeight = Math.min(iframe.contentWindow.window.document.documentElement.scrollHeight, iframe.contentWindow.window.document.body.scrollHeight);
$(iframe).height(iframeHeight);
}
失败的测试就不说了,来直接的。
两个链接和iframe:
代码如下:
个人信息
修改密码
js代码:
代码如下: