当前位置:编程学习 > JSP >>

如何在jsp页面关闭的时候执行一段js代码

补充:是在jsp关闭的时候执行某个js函数,不是关闭以后,多谢
答案:逻辑不对啊 肯定是在关闭之前啊 哪有在关闭之后执行的啊
其他: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> 首先 编写好一个函数 即function hello(){  alert("您好")  }   然后在最后的 提交按钮的时候 写onclick="hello()"   即<input type="submit" value="提交" onclick="hello()">  
这样 当你 点击提交的时候 会跳出一个窗口 显示 您好,

上一个:html转换成jsp,导航不见了,在dreamver中运行就显示全部代码,放到服务器中可以显示,只是导航部分不能显
下一个:登陆后显示登陆的用户名,通过数据库判断用户类型的jsp代码,急!急!急!我是新手谢谢啊,帮帮忙

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,