我试图在用户关闭浏览器后在mysql DB中记录用户注销时间。我进行了搜索,但是有关window.onbeforeunload
JavaScript事件的文章最多,但并非所有浏览器都支持。即使与F5按钮配合使用也无法指定按摩或动作。
<!DOCTYPE html>
<html>
<body onbeforeunload="return myFunction()">
<p>Close this window, press F5 or click on the link below to invoke the onbeforeunload event.</p>
<a href="Google.come">test by redirecting</a>
<script>
function myFunction() {
return "specific massage";
}
</script>
</body>
</html>