4个回答
展开全部
页面中加入一下代码,劫持页面退出事件:
<script>
window.onbeforeunload = function(event) {
//-----你要执行的代码-------------
return confirm("确定退出吗???");
}
</script>
注意:各内核的浏览器的处理方式是不一样的。
<script>
window.onbeforeunload = function(event) {
//-----你要执行的代码-------------
return confirm("确定退出吗???");
}
</script>
注意:各内核的浏览器的处理方式是不一样的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先 编写好一个函数 即function hello(){ alert("您好") } 然后在最后的 提交按钮的时候 写onclick="hello()" 即<input type="submit" value="提交" onclick="hello()">
这样 当你 点击提交的时候 会跳出一个窗口 显示 您好,
这样 当你 点击提交的时候 会跳出一个窗口 显示 您好,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、onbeforeunload事件:
示例:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onbeforeunload测试</title>
<script>
function checkLeave(){
event.returnValue="确定离开当前页面吗?";
在这里可以写你要执行的那个函数
}
</script>
</head>
<body onbeforeunload="checkLeave()">
</body>
</html>
2、onunload事件
示例:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onunload测试</title>
<script>
function checkLeave(){
alert("欢迎下次再来!");
在这里可以写你要执行的那个函数
}
</script>
</head>
<body onunload="checkLeave()">
</body>
</html>
示例:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onbeforeunload测试</title>
<script>
function checkLeave(){
event.returnValue="确定离开当前页面吗?";
在这里可以写你要执行的那个函数
}
</script>
</head>
<body onbeforeunload="checkLeave()">
</body>
</html>
2、onunload事件
示例:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onunload测试</title>
<script>
function checkLeave(){
alert("欢迎下次再来!");
在这里可以写你要执行的那个函数
}
</script>
</head>
<body onunload="checkLeave()">
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
逻辑不对啊 肯定是在关闭之前啊 哪有在关闭之后执行的啊
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询