如何顯示“您確定要從此頁面導(dǎo)航嗎?”何時提交更改?在堆棧溢出中,如果您開始進行更改,然后嘗試從頁面導(dǎo)航,則會顯示一個javascript確認按鈕,并詢問:“您確定要從這個頁面導(dǎo)航嗎?”布萊·布拉德.。以前是否有人執(zhí)行過此操作,我如何跟蹤已提交的更改?我相信我自己能做到這一點,我正在努力向你們-專家們-學(xué)習良好的做法。我嘗試了以下方法,但仍然不起作用:<html><body>
<p>Close the page to trigger the onunload event.</p>
<script type="text/javascript">
var changes = false;
window.onbeforeunload = function() {
if (changes)
{
var message = "Are you sure you want to navigate away from this page?\n\nYou have started writing or editing a post.
\n\nPress OK to continue or Cancel to stay on the current page.";
if (confirm(message)) return true;
else return false;
}
}
</script>
<input type='text' onchange='changes=true;'> </input></body></html>有人能舉個例子嗎?
如何顯示“您確定要從此頁面導(dǎo)航嗎?”何時提交更改?
蕪湖不蕪
2019-06-19 17:06:47