使用Firefox的最新更新,当客户点击屏幕上的关闭按钮时,我无法再使用javascript关闭页面。以下是我过去使用的内容,似乎无法找到替代解决方案。有什么想法吗?
var response = confirm('The webpage you are viewing is trying to close the window.\n\nDo you want to close the window?');
if (response) {
window.open('', '_self');
window.close();
}