当用户点击浏览器后退按钮时,用户将看到我在下面的代码中使用的警告消息。
window.onbeforeunload = function () { return "If you want to go back to previous page Please use Previous step Button in below"; };
但在代码中我写了“如果你想回到上一页请使用下面的上一步按钮”。此消息未显示在警告框中,而不是显示另一条消息的消息:
。
如何在警告框中显示我自己的消息?
答案 0 :(得分:-1)
您需要在beforeunload事件的处理程序中放置要使用的javascript / jquery代码
window.addEventListener("beforeunload", function (event) {
//your code goes here. Create modal window or whatever you need
});