窗口父位置?

时间:2011-03-22 08:25:02

标签: javascript

我们希望window.parent在点击时链接到另一个页面,我们该怎么做呢?

2 个答案:

答案 0 :(得分:9)

window.parent.location.href = 'somePage.html';

或链接:

<a href="#" onclick="window.parent.location.href = 'somePage.html';">link</a>

答案 1 :(得分:0)

以下javascript代码为我工作

<强> window.parent.location = 'somepage.html';