Html中 IFrame的用法及注意点
程序员文章站
2022-12-09 16:50:47
0x01 iframe的跳出框架
0x02 iframe样式设置
0x03 iframe重置高度
1、首先来一个,跳出iframe的好方法,直接可以在login.as...
0x01 iframe的跳出框架
0x02 iframe样式设置
0x03 iframe重置高度
1、首先来一个,跳出iframe的好方法,直接可以在login.aspx页面使用。
if (window.parent.[iframe外壳的某方法]) { top.location.href = "login.aspx"; }
2、再来段比较好看的iframe
<script type="text/javascript"> function setwinheight() { var obj = document.getelementbyid("content"); var win = obj; if (win && !window.opera) { if (win.contentdocument && win.contentdocument.body.offsetheight) win.height = win.contentdocument.body.offsetheight + 20; else if (win.document && win.document.body.scrollheight) win.height = win.document.body.scrollheight + 20; } } window.onresize = function () { setwinheight(); } </script> <div class="page-body"> <iframe id="content" src="none.aspx" name="content" onload="javascript:setwinheight()" frameborder="0" scrolling="auto" style="min-height: 700px;" height="100%" width="100%"></iframe> </div>
3、子页面的使用,子页面,在调整大小后,可以调用父页面的setwinheight就可用把布局弄好看了。
if (window.parent.setwinheight) window.parent.setwinheight();
以上所述是小编给大家介绍的html之 iframe使用及注意点,希望对大家有所帮助
下一篇: 豆瓣酱是什么?豆瓣酱的品种有哪些呢?
推荐阅读
-
Html中 IFrame的用法及注意点
-
HTML5移动端开发中的Viewport标签及相关CSS用法解析
-
键盘录入一个文件夹路径,统计该文件夹(包含子文件夹)中每种类型的文件及个数,注意:用文件类型(后缀名,不包含.(点),如:"java","txt")作为key, 用个数作为value,放入到map集
-
键盘录入一个文件夹路径,统计该文件夹(包含子文件夹)中每种类型的文件及个数,注意:用文件类型(后缀名,不包含.(点),如:"java","txt")作为key, 用个数作为value,放入到map集
-
5.键盘录入一个文件夹路径,统计该文件夹(包含子文件夹)中每种类型的文件及个数,注意:用文件类型(后缀名,不包含.(点),如:"java","txt")作为key,
-
键盘录入一个文件夹路径,统计该文件夹(包含子文件夹)中每种类型的文件及个数,注意:用文件类型(后缀名,不包含.(点),如:"java","txt")作为key
-
java中collections的用法(java知识点及用法全解)
-
html中的框架frameset和frame及iframe
-
java中static的用法及注意点
-
php中echo、print和print_r的区别点及用法总结