Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的链接在框架(框架集)中,我无法使用 javascript 关闭窗口。我尝试了我在 js 中找到的所有东西,但没有用。
<script> function close_window() { if (confirm("Close?")) { window.close(); } } </script> <a href="#" onclick="close_window();">Close</a>