今天遇到了用JS关闭当前页面窗口没反应的问题,看Console说是Scripts may close only the windows that were opened by it.
我用的是
window.close()
不行
后来百度之,找到解决办法:
window.location.href="about:blank"; window.close();
妥妥的
今天遇到了用JS关闭当前页面窗口没反应的问题,看Console说是Scripts may close only the windows that were opened by it.
我用的是
window.close()
不行
后来百度之,找到解决办法:
window.location.href="about:blank"; window.close();
妥妥的