私は基本的にlocation.hrefを変更した後、ウィンドウへの参照を失っています。window.locationを変更するとウィンドウの参照が失われる?
var win = window.open(window.location,"foo","");
//win is referenced - all good
win.location.href = 'http://www.stackoverflow.com'
//url of window is successfully changed
//but I now no-longer have reference to this window
他のウィンドウは、場所の更新後、あなたとは異なるドメインから取得したページを保持します。したがって、とにかく何もすることはできません。 – Pointy