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.
我有一个带有按钮(1)的窗口(1)。如果我单击该按钮,则会出现另一个窗口(2)。它还有一个按钮 (2)。如果我单击按钮 (2),则会出现弹出窗口。如果我在弹出窗口上按“确定”,如何关闭窗口 (2)?我正在使用 JavaScript。
// store reference to window var window2 = window.open(...); // close window via reference, put this in your OK button handler window2.close();
在此处阅读有关窗口管理的信息。
你不能根据浏览器的安全保证来做,有些动作不允许在没有用户干预的情况下直接通过javascript进行管理。
从这里得到这个/stackoverflow/