document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
javascriptdocument.location.hrefにtarget="_parent"を追加する方法
document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
javascriptdocument.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';