标签: javascript jquery html css
我需要在用户离开页面之前提醒他们未保存的更改。但我不想使用默认的警告框。假设调用showalertPopup()函数显示我设计的警告框。如何使用默认警报框
showalertPopup()
window.onbeforeunload = function() { $alertMsg = "Are you sure wanna leave this Page ?" return $alertMsg; };