html如何关闭当前页面
程序员文章站
2022-03-22 13:57:34
...
html关闭当前页面的方法:1、自定义提示关闭;2、在即将离开当前页面时,用户点浏览器的最大化最小化关闭按钮中的关闭按钮onbeforeunload事件。
本教程操作环境:windows7系统、html5版,DELL G3电脑。
html关闭当前页面的方法:
1、自定义提示关闭
<script language="javascript"> // 这个脚本是 ie6和ie7 通用的脚本 function custom_close(){ if(confirm("您确定要关闭本页吗?")){ window.opener=null; window.open('','_self'); window.close(); } else{ } } </script> <input id="btnClose" type="button" value="关闭本页" onClick="custom_close()" />
2、在即将离开当前页面(刷新或关闭)时
用户点浏览器的最大化最小化关闭按钮中的关闭按钮时
onbeforeunload 事件在即将离开当前页面(刷新或关闭)时触发。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html中</title> </head> <body onbeforeunload="return myFunction()"> <p>该实例演示了如何向 body 元素添加 "onbeforeunload" 事件。</p> <p>关闭当前窗口,按下 F5 或点击以下链接触发 onbeforeunload 事件。</p> <a href="http://www.runoob.com">点击调整到菜鸟教程</a> <script> function myFunction() { return "我在这写点东西..."; } </script> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JavaScript 中</title> </head> <body> <p>该实例演示了如何使用 HTML DOM 向 body 元素添加 "onbeforeunload" 事件。</p> <p>关闭当前窗口,按下 F5 或点击以下链接触发 onbeforeunload 事件。</p> <a href="http://www.runoob.com">点击调整到菜鸟教程</a> <script> window.onbeforeunload = function(event) { event.returnValue = "我在这写点东西..."; }; </script> </body> </html>
相关学习推荐:html视频教程
以上就是html如何关闭当前页面的详细内容,更多请关注其它相关文章!
上一篇: c++万能头文件是什么?
下一篇: 如何用python画烟花
推荐阅读
-
php页面为啥不能像html一样直接在浏览器中查看呢,该如何解决
-
如何平铺整个页面_html/css_WEB-ITnose
-
9、如何控制框架页面或
-
如何平铺整个页面_html/css_WEB-ITnose
-
在html里面用submit方式提交表单后,在另一个页面如何将值取出来_html/css_WEB-ITnose
-
HTML页面如何象ASP一样接受参数_javascript技巧
-
html页面中如何实现保留空格以及换行符的实例分析
-
WEB页面如何得知用户当前是手机访问还是通过3G/4G网络访问?
-
springboot如何使用thymeleaf模板访问html页面
-
springboot如何使用thymeleaf模板访问html页面