假“点击"激活 onclick 方法

2022-01-15 00:00:00 event-handling javascript

我有一个带有 onclick 方法的元素.

I have an element with an onclick method.

我想在另一个函数中激活该方法(或:假点击此元素).

I would like to activate that method (or: fake a click on this element) within another function.

这可能吗?

推荐答案

如果你使用的是 JQuery,你可以这样做:

If you're using JQuery you can do:

$('#elementid').click();

相关文章