window.close()

场景:Chrome 里,直接输入浏览器地址,使用window.close() 无法关闭页面。

可参考解决:(chrome 最新版目前没看到完美解决方法)
https://stackoverflow.com/questions/57854/how-can-i-close-a-browser-window-without-receiving-the-do-you-want-to-close-thi#

Scripts are not allowed to close a window that a user opened. This is considered a security risk. Though it isn't in any standard, all browser vendors follow this (Mozilla docs). If this happens in some browsers, it's a security bug that (ideally) gets patched very quickly.
None of the hacks in the answers on this question work any longer, and if someone would come up with another dirty hack, eventually it will stop working as well.
I suggest you don't waste energy fighting this and embrace the method that the browser so helpfully gives you — ask the user before you seemingly crash their page.


参考:
https://stackoverflow.com/questions/19761241/window-close-and-self-close-do-not-close-the-window-in-chrome

猜你喜欢

转载自blog.csdn.net/u010170616/article/details/80840592
今日推荐