在某人决定离开页面之前调用 ajax 函数是可能的。我的意思是我可以询问用户是想离开还是留下。但我不知道当用户单击“是离开页面”按钮时如何改变行为。
我有这个代码工作..
<head>
<script type="text/javascript">
function catchExit() {
return "All your data is going to be lost. Are you sure??";
}
</script>
</head>
<body onbeforeunload="return catchExit()">
<p>
Dont leave the page.
</p>
</body>