我们希望window.parent在点击时链接到另一个页面,我们该怎么做呢?
答案 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'; 强>