日期:2014-05-16 浏览次数:20328 次
<frameset> <frame src="aa.html" id="aa"/> <frame src="bb.html" id="bb"/> </frameset>
------解决方案--------------------
self.parent.frames['aa'].style.display='none'试试这个呢?。。
------解决方案--------------------
这样看看,下面例子...
主页面:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> </head> <frameset rows="116,*" cols="*" framespacing="0" frameborder="NO" border="1"> <frame src="ajax007_01.htm" name="topFrame" scrolling="NO" noresize> <frame src="ajax007_02.htm" name="mainFrame"> </frameset> <noframes><body> </body></noframes> </html>
------解决方案--------------------
setTimeout(function(){self.parent.frames['aa'].style.display='none';},500);
这样试试
------解决方案--------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> </head> <frameset id="frames" name="frames" rows="30%,69%" cols="*" framespacing="2" frameborder="2" border="2"> <frame src="ajax007_01.htm" name="topFrame" scrolling="NO" noresize> <frame src="ajax007_02.htm" name="mainFrame"> </frameset> <noframes><body> </body></noframes> </html>
------解决方案--------------------