如何从孙子页面</iframe>加载<iframe loading =“”childb.html =“”>的父页面

时间:2009-11-02 08:22:40

标签: iframe

我有一个parent.html,里面有一个iframe。当用户触发锚点链接A或B时,iframe将加载childA.html或childB.html

在childB.html中,有一个指向grandchildren.html的锚点链接。

目前我的问题是,每当我点击grandchildren.html上的链接返回parent.html时,iframe都会显示childA.html

如果我想在iframe中显示childB.html而不是显示childA.html

,我该怎么办?

提前致谢

Kong

1 个答案:

答案 0 :(得分:0)

向父html添加参数。例如,?child = A.在body stmt中,添加onload = init()。在init()javascript中,解析window.location.search寻找“child”,然后对你已经做过的iframe源进行相同的切换。