我在网页游戏中有一个“关闭按钮”。如果用户点击它,浏览器窗口应该关闭。但它在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上使用它?
非常感谢