我beforeunload在我的 js 代码中添加如下,它在 IE10 中工作我想给用户一个警告,没有别的
$(document).ready(function () {
init();
window.addEventListener("beforeunload", function () {
if (changeSubmitted) {
return 'If you choose to leave, the data entered will not be saved!';
}
return true;
});
});
但是,该事件似乎没有在 Edge 中触发。