iframe调用问题
有4个html,分别是:aa.html,bb.html,cc.html,dd.htmlaa.html的内容:
<div>
<div><iframe id='a1' name="a1" src="cc.html"></iframe></div>
<div><iframe id='b1' name="b1" src="cc.html"></iframe></div>
</div>
bb.html的内容:
<script language=javascript>
document.location="aa.html";
parent.a1.document.location="dd.html";
</script>
cc.html的内容:ccc dd.html的内容:ddd
我希望打开bb.html时,网页出现内容:ccc ddd 。上面bb.html代码不能实现这个功能,那位高手能实现,必须通过调用aa.html和dd.html实现。谢谢!