用 open() 打开窗口,在IE和NN中用一些不同,对比如下: window.open("http://elove.heha.net/");
window.open("http://lucky.myrice.com/");
Internet Explorer Navigator
打开2个不同的窗口 打开2个不同的窗口
window.open("http://elove.heha.net/", "_blank");
window.open("http://lucky.myrice.com/", "_blank");
Internet Explorer Navigator
打开2个不同的窗口 打开2个不同的窗口
window.open("http://elove.heha.net/", "");
window.open("http://lucky.myrice.com/", "");
Internet Explorer Navigator
打开2个不同的窗口 打开1个不同的窗口 (名为"").
window.open("http://elove.heha.net/", "win");
window.open("http://lucky.myrice.com/", "win");
Internet Explorer Navigator
打开1个不同的窗口[第2个URL将替换第1个URL] 打开1个不同的窗口[第2个URL将替换第1个URL]