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.
这在jquery中可能吗?我将有一个弹出窗口。假设我的按钮/控制器在我的弹出窗口中,并且我想隐藏位于父窗口中的元素。弹出窗口可以触摸或操作父元素吗?如何?请帮忙
或者就像我关闭弹出窗口一样,某些元素将隐藏在父窗口中'
请帮忙
是的..
如果使用对话框弹出
$('#idUWant').hide();
如果 iframe 使用父级
parent.find('#idUWant').hide();
如果窗口
window.opener.find('#idUWant').hide();
您可以从弹出窗口访问 window.opener:
window.opener.jQuery("#YourSelector");