gpt4 book ai didi

javascript - 如何在刷新时触发 beforeunload 警告但在提交时不触发

转载 作者:行者123 更新时间:2023-12-03 06:54:19 26 4
gpt4 key购买 nike

第 1 页包含动态表单,第 2 页是对提交数据的审核。我有以下限制:

  • 提交第 1 页时没有 beforeunload 警告;
  • beforeunload 刷新页面 1 时发出警告;
  • 从第 2 页发出 history.back() 时不会重新加载第 1 页。

我尝试使用 window.onbeforeunload$(window).unload() (第 1 页),但我似乎无法获得预期结果.

这是否可能,或者这些约束是否绝对矛盾(我的意思是,对于合理数量的 JS 行......)?

更新:

我删除了约束 3,因为根据一些阅读,它值得 its own question .

最佳答案

您应该能够在第 1 部分和第 2 部分中使用类似的内容,但不确定第 3 部分的含义

"use strict";
var isSubmit = false
document.querySelector('button').addEventListener('click', e => {
isSubmit = true
window.location.reload()
})

window.onbeforeunload = e => {
if (!isSubmit) {
return "Are you sure you want to leave?"
}
}
<button>Submit</button>

关于javascript - 如何在刷新时触发 beforeunload 警告但在提交时不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37350372/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com