我有一个简单的 html 表单,里面的字段很少。
我想确保用户在尝试离开页面时收到警报消息。所以我在页面上添加了脚本,当用户试图离开这个页面时,它就会运行。
但是当用户尝试提交表单时,我也会收到此警报消息。当用户保存表单时,我不想要此警报消息。
请帮忙。
下面是一些示例代码。
<html>
<head>
<script>
function verifyexit() { return 'Are you sure ?'; } window.onbeforeunload = verifyexit;
</script>
</head>
<body>
Go to <a href="b.html"> another page </a>
<form action="c.html">
name : <input type="text" name="name" value=""/> <br>
email : <input type="text" name="email" value=""/> <br>
<input type="submit" value="save"/>
</form>
</body>