JS - 关于 close( ) 的一个小 bug
使用 close() 可实现关闭当前页面的效果。
但有时候却又实现不了这个方法。
<button onClick="closeThis()" type="button">关闭当前页面</button>
<script>
function closeThis() {
window.close();
}
</script>
奇怪的 bug 就是,明明点击了按钮,但页面就是不关闭。
于是 F12 -> 断点 -> F5 ->点击 -> F10 -> 发现 bug
警告:Scripts may close only the windows that were opened by it.
好吧,从 url 输入的窗口是无法使用此方法的。