隐藏IFRAME的问题。
如题:在一个查询页面里包含有一个IFRAME,我想实现在提交查询条件的同时隐藏IFRAME,如何实现呢?请教了!
《!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"》
《html》
《head》
《meta http-equiv="Content-Type" content="text/html; charset=gb2312"》
《title》无标题文档《/title》
《style type="text/css"》
《!--
body {
background-color: #0000FF;
}
--》
《/style》
《script language="javascript"》
function Hidden()
{
this.IfD.style.display="none";
}
function Show()
{
this.IfD.style.display="inline";
}
《/script》
《/head》
《body》
《div id="IfD"》
《iframe src="bbs.bc-cn.net" width="500" height="600"》《/iframe》
《/div》
《input type="button" name="Submit" value="隐藏" onClick="Hidden()"》
《input type="button" name="Submit" value="显示" onClick="Show()"》
《/body》
《/html》
以上为演示网页。