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

Gho*_*man 3 javascript jquery

document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
Run Code Online (Sandbox Code Playgroud)

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

Mar*_*c B 6

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

parent.document.location.href = 'http://...'
Run Code Online (Sandbox Code Playgroud)