如何使用光标移动qtip工具提示

时间:2012-03-07 21:01:50

标签: jquery tooltip qtip

我正在使用js库qtip工具提示。当我将鼠标悬停在表格中的悬停行上时,我想用我的光标移动qtip工具提示。我知道如何使用我的光标使我自己的工具提示移动,但我正在努力与qtip。请解释你回答的代码。感谢

我的HTML:

<table>
    <div id="hoverdiv"></div>
    <tr class="hover" hovertext="Some text">
        <td>Total Credits</td>
        <td><%= @total_credit %></td>
    </tr>
</table>

我可以创建一个普通的工具提示(没有qtip js lib)来跟随我的光标使用以下jquery代码

$(document).ready(function() {
$('.hover').mousemove(function(e) {

    var hovertext = $(this).attr('hovertext');
    $('#hoverdiv').text(hovertext).show();
    $('#hoverdiv').css('top', e.clientY+10).css('left', e.clientX+10);

}).mouseout(function() {

    $('#hoverdiv').hide();

});
});

显示静态qtip工具提示的代码:

$(document).ready(function() {
 $('.hover').each(function() {
  $(this).qtip({
     content: $(this).attr('hovertext')
  });
 });
});

这是我到目前为止所尝试的:

$(document).ready(function() {
$('.hover').mousemove(function(e) {

    $(this).qtip({
     content: $(this).attr('hovertext')
  });
    $('').css('top', e.clientY+10).css('left', e.clientX+10);
});
});

1 个答案:

答案 0 :(得分:11)

根据 qTip docs

  

当position.target设置为mouse时,此选项确定   当鼠标悬停在鼠标悬停上时,工具提示是否跟随鼠标   show.target。

示例:

$('.selector').qtip({
   content: {
      text: 'I follow the mouse whilst I\'m visible. Weeeeee!'
   },
   position: {
      target: 'mouse',
      adjust: {
         mouse: true  // Can be omitted (e.g. default behaviour)
      }
   }
});

jsFiddle example