Javascript如何在document.location.href中添加target =“_ parent”

时间:2012-10-13 17:34:07

标签: javascript jquery

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

Javascript如何在document.location.href中添加target =“_ parent”

4 个答案:

答案 0 :(得分:5)

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

parent.document.location.href = 'http://...'

答案 1 :(得分:2)

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

答案 2 :(得分:1)

//但弹出窗口拦截器可能阻止它

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

答案 3 :(得分:0)

我使用以下代码:

if (parent)
    parent.document.location.href = '/iframe_parent';
else
    location.href = '/no_iframe';