首页 > web前端 > js教程 > 正文

实现在新打开的页面点击关闭窗口的方法

一个新手
发布: 2017-10-24 09:13:55
原创
1755 人浏览过

1.在开发过程中我们前端的用户体验中有时候会要求点击一个按钮,关闭当前浏览器窗口。用html DOM就可做到。

2.注意:本次写法要求在新窗口中关闭。 target="_blank"

3. 由a.html 中打开b.html 在b页面中点击按钮关闭B页面

4. a页面代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> new document </title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
 </head>
 <body>
  <div>
  <a href=&#39;button_colse.html&#39; target="_blank">测试点击按钮关闭当前页面</a>
  </div>
 </body>
</html>
登录后复制

5. b页面代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> new document </title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <style type="text/css"></style>
  <script type="text/javascript" src="jquery-1.7.1.min.js"></script>
 </head>
 <body>
  <div>
  点击我关闭本页面
  </div>
  <button  onclick="javascript:window.opener=null;window.open(&#39;&#39;,&#39;_self&#39;);window.close();" type="button" role="button" aria-disabled="false">
        <span class="ui-button-text">
        <span>关闭</span>
        </span>
 </button>
 </body>
</html>
登录后复制

以上是实现在新打开的页面点击关闭窗口的方法的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板