如何将鼠标单击更改为鼠标悬停?
How to change mouse click to mouse hover?
这是 jsfiddle link,我在其中获得了动画工具提示的代码,但问题是在 click
上只有它们在工作,我希望当我 hover
鼠标就可以了。
尝试添加这个:
$('.popover-example a').hover(
function(){
$(this).click();
}
);
使用鼠标事件mouseenter
和mouseleave
。
$('.popover-example li a').mouseenter(function() {
$(this).trigger("click");
}).mouseleave(function() {
$(this).trigger("click");
})
这是 jsfiddle link,我在其中获得了动画工具提示的代码,但问题是在 click
上只有它们在工作,我希望当我 hover
鼠标就可以了。
尝试添加这个:
$('.popover-example a').hover(
function(){
$(this).click();
}
);
使用鼠标事件mouseenter
和mouseleave
。
$('.popover-example li a').mouseenter(function() {
$(this).trigger("click");
}).mouseleave(function() {
$(this).trigger("click");
})