如何防止關閉瀏覽器窗口?我嘗試使用以下代碼在關閉瀏覽器窗口時收到警報:window.onbeforeunload = confirmExit;function confirmExit() {
return "You have attempted to leave this page. If you have made any changes to the fields without clicking the Save button, your changes will be lost. Are you sure you want to exit this page?";}它有效,但如果頁面包含一個超鏈接,則單擊該超鏈接會引發相同的警報。我只有在關閉瀏覽器窗口而不是單擊超鏈接時才需要顯示警報。
如何防止關閉瀏覽器窗口?
HUWWW
2019-08-19 11:02:48