document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
Javascript 如何在 document.location.href 中添加 target="_parent"
document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
Javascript 如何在 document.location.href 中添加 target="_parent"
您不能,这.href
实际上只是您要重定向到的 URL。您必须直接更改.href
要定位的框架,而不是您所在的窗口/框架的 href
parent.document.location.href = 'http://...'
window.open(
'http://verttgrettest.com/testpaper.aspx?VideoId=1',
'_blank'
);
//但弹出窗口阻止程序可能会阻止它
window.open('http://verttgrettest.com/testpaper.aspx?VideoId=1')
我使用以下代码:
if (parent)
parent.document.location.href = '/iframe_parent';
else
location.href = '/no_iframe';