document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
的Javascript如何在document.location.href添加目標= 「_父」的Javascript如何在document.location.href添加目標= 「_父」
document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
的Javascript如何在document.location.href添加目標= 「_父」的Javascript如何在document.location.href添加目標= 「_父」
你不能,.href
是字面上只是要重定向到URL。您必須直接更改要定位的幀的.href
,而不是您所處窗口/框的href。
parent.document.location.href = 'http://...'
因此不需要添加targe =「_ parent」 – Ghostman
//但是彈出窗口攔截器可能會阻止它
window.open( 'http://verttgrettest.com/testpaper.aspx?VideoId=1')
「window.open」的第二個參數是「_parent」 – Ian
想要打開一個新窗口/標籤? –
是在新的iframe窗口 – Ghostman
你會改變iframe的src屬性在這種情況下 –