当用户点击' X'时,我需要获得自定义提醒框。 (窗口关闭)。
答案 0 :(得分:0)
我想你可能会在这篇看起来相似的帖子上找到你的答案 - javascript confirm dialog box before close browser window
你必须展示你到目前为止所做的事情
答案 1 :(得分:0)
Html代码
<html>
<head>
<script type="text/javascript">
window.onbeforeunload = function() {
return "Did you save your stuff?"
}
</script>
</head>
<body>
</body>
</html>