Html中 IFrame的用法及注意点
0x01iframe的跳出框架
0x02iframe样式设置
0x03iframe重置高度
1、首先来一个,跳出iframe的好方法,直接可以在Login.aspx页面使用。
if(window.parent.[IFRAME外壳的某方法]){
top.location.href="Login.aspx";
}
2、再来段比较好看的iframe
<scripttype="text/javascript">
functionSetWinHeight(){
varobj=document.getElementById("content");
varwin=obj;
if(win&&!window.opera){
if(win.contentDocument&&win.contentDocument.body.offsetHeight)
win.height=win.contentDocument.body.offsetHeight+20;
elseif(win.Document&&win.Document.body.scrollHeight)
win.height=win.Document.body.scrollHeight+20;
}
}
window.onresize=function(){
SetWinHeight();
}
</script>
<divclass="page-body">
<iframeid="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使用及注意点,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!