如何在Firefox 21中关闭窗口

时间:2013-06-08 17:46:00

标签: javascript firefox

我在网页游戏中有一个“关闭按钮”。如果用户点击它,浏览器窗口应该关闭。但它在Firefox 21版本上不起作用。在Chrome等其他浏览器中,IE可以解决这个问题:

<input type="button" class = "finish" value="Close Game" onclick="closeWindow()" />
 function closeWindow() {
 var win = window.open('', '_self');
 win.location.href = "#";
 win.close();
 }

是否可以在Firefox上使用它?

非常感谢

0 个答案:

没有答案