3
document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"

Javascript 如何在 document.location.href 中添加 target="_parent"

4

4 回答 4

6

您不能,这.href实际上只是您要重定向到的 URL。您必须直接更改.href要定位的框架,而不是您所在的窗口/框架的 href

parent.document.location.href = 'http://...'
于 2012-10-13T17:40:20.280 回答
3
window.open(
  'http://verttgrettest.com/testpaper.aspx?VideoId=1',
  '_blank' 
);
于 2012-10-13T17:39:28.907 回答
1

//但弹出窗口阻止程序可能会阻止它

window.open('http://verttgrettest.com/testpaper.aspx?VideoId=1')

于 2012-10-13T17:40:03.583 回答
0

我使用以下代码:

if (parent)
    parent.document.location.href = '/iframe_parent';
else
    location.href = '/no_iframe';
于 2019-01-17T05:22:32.773 回答