我有一个onbeforeunload,它工作正常。但是,如果用户选择离开页面,我想要一种触发我的DB方法来删除现有项目的方法。如何检测结果以及触发我的DB方法?我的数据库方法是在服务器端。
以下是onbeforeunload的javascript:
var showMsg = true;
window.onbeforeunload = function () {
if (showMsg) {
return "You must publish your profile. Leaving this page will delete the profile information you have entered."
}
}