是否有可能来自iframe的链接影响显示iframe的母页/主页?

时间:2013-02-16 20:38:48

标签: javascript jquery iframe

我有一个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!

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

如果iframe和母版页的域名相同,则很容易 使用:

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

如果域名不同,那么它有点困难: 请参阅此问题: Cross domain iframe issue