关闭时才执行的javasciprt
程序员文章站
2022-03-06 12:32:33
...
1. <html>
2. <script src="jquery.js"></script>
3. <script language="javascript">
4. window.onbeforeunload=function()
5. {
6. var n = window.event.screenX - window.screenLeft;
7. var b = n > document.documentElement.scrollWidth-20;
8. if(b && window.event.clientY < 0 || window.event.altKey)
9. {
10. alert("是关闭而非刷新");
11. sendAjax('http://localhost:8888/testStruts2/test/test.action',''); //这里可以放置你想做的操作代码
12. }
13. }
14. </script>
15. <script>
16. function sendAjax(url,data){
17. $.ajax({
18. type: "POST",
19. url: url,
20. data: data,
21. success: function(msg){
22. alert( "Data Saved: " + msg );
23. }
24. });
25. }
26. </script>
27.
28. <input type="button" onclick="sendAjax('http://localhost:8888/testStruts2/test/test.action','');"/>
29.
30. <html>
上一篇: 第13章 路由过滤
推荐阅读
-
Android编程实现webview执行loadUrl时隐藏键盘的workround效果
-
Linux下执行程序出现 Text file busy 提示时的解决方法
-
IE10多窗口关闭时的警告提示关闭方法
-
VS2010执行剪贴、复制时,提示内存不足的官方补丁
-
关闭浏览器网页时电脑出现卡屏现象的解决方法
-
暴风影音在播放时突然自动关闭的解决办法
-
解决执行docker daemon命令时出错的问题
-
PHP计划任务之关闭浏览器后仍然继续执行的函数
-
如何关闭打开文件时提示的安全警告?打开文件安全警告取消四大方法详解
-
解决maven执行命令时提示:cached in the local repository的解决方法小结