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.
在子窗口中,我有一张桌子。当我点击它时,我需要在父窗口中获取这些值。我正在使用 HTML 和 javascript。我需要这个在 javascript 或 jquery 中。
我认为这个样本很有用
$(purchaseWin.document).ready(function () { $(purchaseWin.document).contents().find('#tdProduct').html('2'); });
您可以window.opener在 javascript 中使用该属性。
window.opener
在子窗口中,编写一个事件处理程序来监听点击,然后可以使用上述属性与其父级进行通信。