一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

数据未保存关闭页面提示确认对话框代码

时间:2011-04-11 编辑:简简单单 来源:一聚教程网

原理是
在表单的 onsubmit 事件中绑定 unloadconfirm.clear 便可清除提示.(表单提交时)

var msg_unload="您的文章内容还没有进行保存!";
var unloadconfirm = {};
unloadconfirm.set = function(confirm_msg)
{
    window.onbeforeunload = function(event)
    {
        event = event || window.event;
        event.returnvalue = confirm_msg;
    }
}
unloadconfirm.clear = function()
{
    window.onbeforeunload = function(){};
}
unloadconfirm.set(msg_unload);

热门栏目