0

我有这个jQuery:

this.tooltip = function(){  
    /* CONFIG */        
        xOffset = 10;
        yOffset = 20;       
        // these 2 variable determine popup's distance from the cursor
        // you might want to adjust to get the right result     
    /* END CONFIG */        
    $("a.tooltip").hover(function(e){                                             
        this.t = this.title;
        this.title = "";                                      
        $("body").append("<p id='tooltip'>"+ this.t +"</p>");
        $("#tooltip")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px")
            .fadeIn("fast");        
    },
    function(){
        this.title = this.t;        
        $("#tooltip").remove();
    }); 
    $("a.tooltip").mousemove(function(e){
        $("#tooltip")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px");
    });         
};



// starting the script on page load
$(document).ready(function(){
    tooltip();
});

它与一个名为“工具提示”的 CSS 类一起使用font-variant:small-caps;

所有工具提示都采用小型大写字母,看起来很棒:)

工具提示是这样调用的: <a href="#" class="tooltip" title="this is the tooltip">hover to see tooltip</a>

我想在工具提示中包含一两个单词 BOLD 和全部小写。我怎样才能在不打乱工具提示的重置的情况下做到这一点?

因此,而不是显示为:

这是工具提示

我想要 :

这是工具提示

有任何想法吗 ??

4

1 回答 1

0

您可以将某个类添加到您正在添加的文本中,然后通过 CSS 设置它的样式。例如

$("a.tooltip").hover(function(e){                                             
        this.t = this.title;
        this.title = "";                                      
        $("body").append("<p id='tooltip' class='tooltipText'>"+ this.t +"</p>");
        $("#tooltip")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px")
            .fadeIn("fast");        
    },

然后是CSS:

.tooltipText
{
   text-transform: uppercase;
   /* any style you want  */

}
于 2013-04-02T19:40:47.007 回答