以下是jsfiddle link,其中我获得了动画工具提示的代码,但问题是在click
只有它们正在工作,我希望在我{{1}时生成动画鼠标就在它上面。
答案 0 :(得分:3)
尝试添加此内容:
$('.popover-example a').hover(
function(){
$(this).click();
}
);
答案 1 :(得分:0)
使用鼠标事件mouseenter
和mouseleave
。
$('.popover-example li a').mouseenter(function() {
$(this).trigger("click");
}).mouseleave(function() {
$(this).trigger("click");
})