//浏览器关闭或刷新事件 function bindCloseBrowser() { var a = "注意!! 您即将离开页面!离开后可能会导致数据丢失 您确定要离开吗?"; window.onbeforeunload = function (b) { b = b || window.event; b.returnValue = a; return a } }