0

我在一个项目中使用这个 jQuery这个工具提示。

问题是当我有很多东西出现在隐藏的工具提示(div)中时。发生这种情况时,div 的高度会变大,无法放入屏幕,因此它会位于屏幕下方,并且无法读取 div 的某些部分。

我想让 div 出现在鼠标指针的中间,而不是指针的右下角。

那可能吗?

编辑:

这是 jQuery 代码

   /*=========================Tooltip NOT MINE===================================*/
    //Select all anchor tag with rel set to tooltip
$('a[rel=tooltip]').mouseover(function() {

    //Grab the title attribute's value and assign it to a variable
    var tip = $(this).attr('title');    

    //Remove the title attribute's to avoid the native tooltip from the browser
    $(this).attr('title','');

    //Append the tooltip template and its value
    $(this).append('<div id="tooltip"><div class="tipHeader"></div><div class="tipBody">' + tip + '</div><div class="tipFooter"></div></div>');     

    //Show the tooltip with faceIn effect

    $('#tooltip').fadeIn('1000');
    $('#tooltip').fadeTo('100',0.9);

}).mousemove(function(e) {

    //Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
    $('#tooltip').css('top', e.pageY + 10 );
    $('#tooltip').css('left', e.pageX + 20 );

}).mouseout(function() {

    //Put back the title attribute's value
    $(this).attr('title',$('.tipBody').html());

    //Remove the appended tooltip template
    $(this).children('div#tooltip').remove();

});
     /*=========================Tooltip END===================================*/

这就是我从数据库中获取工具提示中所有文本的方式

   echo "<p class='resultInfo'><a rel='tooltip' class='tip' 
   title='<p    class=title>Information: </p><p>
   <span class=title>Knowledge</span><span>". $resultData['Knowledge'] ."<span     class=title>Competence: </span><span>". 
   $resultData['Competence'] ."<span class=title>
   Skills: </span><span>". $resultData['Skills'] ."</span>'>"
   . $resultData["Level"] . "<span class='icon'></span></a></p>";

正如我上面所说,该脚本运行良好。唯一的问题是当回显输出有时很长并导致我的 div 工具提示在屏幕高度上扩展时。所以我想把 div 推到光标的中间

4

1 回答 1

0

经过大量搜索,我想我找到了

我改变了这段代码

.mousemove(function(e) {

    //Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
    $('#tooltip').css('top', e.pageY + 10 );
    $('#tooltip').css('left', e.pageX + 20 );

.mousemove(function(e) {

    //Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
    $('#tooltip').css('top', e.pageY - 100 );
    $('#tooltip').css('left', e.pageX + 20 );

不知道以后会不会出现一些奇怪的行为,我会测试一下。

于 2012-04-26T08:16:51.427 回答