http://developer.mozilla.org/ja/docs/DOM:window.open
> >url に空文字列を与えることは、ウィンドウのロケーションを変えずに、
> >その名前によって開いたウィンドウの参照を得るための手段です。
var win1 = window.open('http://example.com', 'example');
var win2 = window.open('', 'example');
console.log(win2.location);
// -> http://example.com
あと、window.openの第3引数はスペース不可
> >url に空文字列を与えることは、ウィンドウのロケーションを変えずに、
> >その名前によって開いたウィンドウの参照を得るための手段です。
var win1 = window.open('http://example.com', 'example');
var win2 = window.open('', 'example');
console.log(win2.location);
// -> http://example.com
あと、window.openの第3引数はスペース不可
コメントする