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();
}