欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

window.close的解决方法

程序员文章站 2022-03-04 20:31:10
...

1网上常见的方法:

            window.opener=null;
            window.open(' ','_self');
            window.close();

2.页面跳转之后,新的页面的window.close功能失效 :

      (1)用以下的方法打开所需跳转的页面

           window.location.replace('页面.html')

      (2)跳转到的页面的js里添加:

            window.close();

 

 

 

相关标签: 前端