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.
我在用
$(".abc",window.opener.document).trigger('click')
在父窗口元素上触发点击事件。
但它不起作用。父窗口中存在一个元素,其类名为abc。
abc
我如何触发 onclick 事件?
提前致谢.....
尝试:
window.opener.$('.abc').trigger('click')
使用上下文参数
$(".abc",parent.document)
但是如果你真的使用弹出窗口,你需要访问opener而不是parent
$(".abc",opener.document)