Jquery悬停似乎不稳定

时间:2012-06-27 10:48:30

标签: jquery

我希望只要鼠标进入div就会在div旁边显示一个twitter引导样式弹出窗口,并且只要鼠标退出div就会消失。

我的章节中有以下内容:

$('#bizhover').hover(
   function() {
     $(this).popover({ html: true, placement: "right" }); 
   },
   function() {
     $(this).popover('hide');
   }
);

我相信通过使用放入div中的“选择”(jquery插件)样式下拉菜单,事情可能会有些复杂,如下所示:

enter image description here

要创建的代码类似于:

<div id = 'bizhover', style = 'margin-right:85px;', class = 'pop_html', title = 'Instructions', data-content = "blah blah blah"> CHOSEN DROP DOWN </div>

我注意到如果我的鼠标退出到下拉的顶部,则弹出窗口仍然存在。如果我将鼠标向下或向外移动到两侧,弹出窗口将按预期消失。

任何建议都将不胜感激。

0 个答案:

没有答案