0
我與一起使用onbeforeunload在關閉頁面時顯示帶有文本區域的消息,問題是我正在收到消息但不是文本。我使用的代碼是:當關閉頁面時使用javascript pompt
window.addEventListener("beforeunload", function(event) {
var response = prompt("Whay this page isn't good for YOU ?", "");
//put the response in log file
//Exit the page
});
我試圖很難得到提示,但沒有結果。
我試過這個解決方案,但不工作。 – Khalid