iframe,自适应高度
web前端-js教程
兼容主流浏览器的 Iframe 自适应高度,js脚本如下: 声卡接电脑 源码,用ubuntu下载磁力,tomcat相关操作题,爬虫软件引擎,怎么把php改成avi,大田seolzw
//iframe 高度自适应
function iframeAutoFit(iframeObj) {
setTimeout(function () {
if (!iframeObj) return;
iframeObj.height = (iframeObj.Document ? iframeObj.Document.body.scrollHeight : iframeObj.contentDocument.body.offsetHeight);
}, 200);
}
调用方法:
富贵鸡完整源码,ubuntu怎么打开域名,为什么重新安装tomcat,腾讯课堂 爬虫俱乐部,php私活多少钱一天,求seo知识lzw
<iframe id="HQRight" name="HQRight" onload="javascript:iframeAutoFit(this);"
height="235px;" width="770px" frameborder="0" scrolling="no"
src="Market/HQData_page.aspx?t=tjs">
扩展:
android表白爱心源码,vscode改分支名字,ubuntu系统改名,同tomcat停止命令,爬虫指南,php 架构设计,广州seo方案优化报价,唯美个人网站源码,织梦模板说明lzw
//动态添加样式
function addSheetFile(obj, path) {
if (obj == undefined || obj == null)
obj = document;var fileref = obj.createElement("link")
fileref.rel = "stylesheet";
fileref.type = "text/css";
fileref.href = path;
fileref.media = "screen";
var headobj = obj.getElementsByTagName('head')[0];
headobj.appendChild(fileref);
}