IFRAME内控制父窗口的另一个IFRAME的问题
假设父窗口有两个IFRAME例子如下:index.htmlaaa.htmlbbb.htmlccc.html在同一个目录下主文件index.html内容如下:<html><...
假设父窗口有两个IFRAME
例子如下:
index.html aaa.html bbb.html ccc.html在同一个目录下
主文件index.html内容如下:
<html>
<iframe width="100" height="100" scrolling="no" src="aaa.html" name="aaa1"></iframe>
<!- 这个为第一个IFRAME ->
<iframe width="100" height="100" scrolling="no" src="bbb.html" name="bbb1"></iframe>
<!- 这个为第二个IFRAME ->
我现在想在bbb.html中设置一个链接使点击这个链接后能将第一个IFRAME中的内容由aaa.html变成ccc.html
请问高手们 在bbb.html中 我应该怎么写? 展开
例子如下:
index.html aaa.html bbb.html ccc.html在同一个目录下
主文件index.html内容如下:
<html>
<iframe width="100" height="100" scrolling="no" src="aaa.html" name="aaa1"></iframe>
<!- 这个为第一个IFRAME ->
<iframe width="100" height="100" scrolling="no" src="bbb.html" name="bbb1"></iframe>
<!- 这个为第二个IFRAME ->
我现在想在bbb.html中设置一个链接使点击这个链接后能将第一个IFRAME中的内容由aaa.html变成ccc.html
请问高手们 在bbb.html中 我应该怎么写? 展开
2个回答
展开全部
我自己是这样的:
index.html:
<iframe width="100" height="100" src="bbb.html" scrolling="no" name="bbb1" onload=document.all("bbb1").height=bbb1.document.body.scrollHeight></iframe><!--地址列表-->
<iframe width="100" height="100" scrolling=no name=aaa1 src="aaa.html" onload=document.all("aaa1").height=aaa1.document.body.scrollHeight></iframe><!--显示内容-->
这两个iframe装载顺序别错了!
bbb.html内容中:
<a href="ccc.html" target=aaa1>显示 ccc.html 的内容</a>
index.html:
<iframe width="100" height="100" src="bbb.html" scrolling="no" name="bbb1" onload=document.all("bbb1").height=bbb1.document.body.scrollHeight></iframe><!--地址列表-->
<iframe width="100" height="100" scrolling=no name=aaa1 src="aaa.html" onload=document.all("aaa1").height=aaa1.document.body.scrollHeight></iframe><!--显示内容-->
这两个iframe装载顺序别错了!
bbb.html内容中:
<a href="ccc.html" target=aaa1>显示 ccc.html 的内容</a>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询