分类目录: html5
H5页面离开前弹框提示未保存
Post date:
Author: cyy
标签: html
Number of comments: no comments
今天遇到个需求,在离开当前页面前,弹出个框框,提醒用户离开不会自动保存。本想着自己实现,但是发现js有现成的。
效果如下:
直接上js代码:
window.onbeforeunload = function (e) {
var e = window.event || e;
e.returnValue = ("离开当前页面吗?");
}