function CloseWindow() {
self.close();
window.location.replace("http://google.com");
}
关闭Chrome和IE的窗口标签,但它会重定向到' google' Mozilla的标签。如何将其替换为清空或关闭窗口。
答案 0 :(得分:3)
要关闭窗口,请使用
window.close();
请注意,Windows中this will only work以编程方式打开,即通过window.open
。
要重定向到空白页面,请使用
location.replace("about:blank");