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.
我的父页面上有一个链接。当我单击它时,会打开一个弹出窗口。在弹出窗口上我有一个按钮,当我点击它时,我需要更改父窗口上的链接(点击打开弹出窗口)、文本和 onClick 事件。
我该怎么做?
您不能从不同的选项卡/窗口访问选项卡/窗口元素。
最好在父窗口上引用一个函数,而不是在弹出窗口上编写代码,所以我会使用 parent.some_function();
这样,如果原始页面发生变化,您也可以在那里更改功能,而无需搜索弹出窗口。