使用jQuery,我为这样的元素添加了一个函数:
$('#theId').mouseenter(function(){
// ...
});
现在,我想从脚本中调用与#theId.mouseenter
相关联的函数。我知道这是可能的:
$('#theId').mouseenter(theFunction);
function theFunction() {
// ...
}
有了这个,我可以从脚本中调用theFunction()
。但是我想知道是否有一个函数来执行与#theId.mouseenter
相关的函数。例如,可以通过执行elem.scroll
来运行与$(elem).scroll();
相关联的函数。 mouseenter
事件有类似之处吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
$('#theId').trigger("mouseenter");
答案 2 :(得分:1)
您实际上根本不需要触发器 - 仅$('#theId').mouseenter();