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.
是否有任何功能Javascript或Jquery使代码单击按钮? 我已经在互联网上搜索但没有看到这个答案。 非常感谢!
Javascript
Jquery
是的,.click
.click
$("#yourButtonElement").click();
请注意,这在没有 jQuery 的原生 JavaScript 中也是可能的
我想你正在寻找trigger.
trigger
$('#foo').trigger('click');
在此示例中,如果您单击按钮 2,它也会触发按钮 1 的单击事件。