0

我有一个包含在另一个页面(母页)中的 iframe。

<iframe name="commentsiframe" id="commentsiframe" onLoad="autoResize('commentsiframe');" width="100%" src="iframe.php" scrolling="no"  marginheight="0" frameborder="0" ></iframe>

如果我有一个

<a href="#top">go top</a>

在 iframe 页面中。当我单击它时,我想操纵主页/母页并使其位于顶部。

我不知道是否可能,但我认为如果是的话,它一定是javascript!

4

2 回答 2

0

如果 iframe 和母页的域相同,那么它的简单使用:

     window.parent.scrollTo(0,0);   //you can call any global function of the mother page

如果域不同,则有点困难:请参阅此问题: 跨域 iframe 问题

于 2013-02-16T21:52:49.020 回答
0

尝试在 a-tag 中使用target="_top"ortarget="_parent"作为属性。在这里查看

于 2013-02-16T20:42:34.430 回答