将此代码包装在 HOVER 事件中...
$("#div_ID").hover(function() {
// perform stuff here...
}
);
当我使用 ONCLICK 事件单击链接时,我想触发上述内容...
$("anchor_ID").click (function() {
$("div_ID").trigger('hover'); // Not sure if this is even correct
}
);
但它不起作用。我怎样才能做到这一点?甚至可能吗?仅在 FF v16、IE8 和 GC v23 上使用 JQuery