如果title attr为空,请删除工具提示

时间:2015-01-07 22:36:41

标签: jquery

我正在尝试修改此代码,因此如果我的链接的title属性为空,则#tooltip将不会显示:

this.tooltip = function(){  
    /* CONFIG */        
        xOffset = -23;
        yOffset = -150;     
        // 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();
});

您可以在此处查看实时示例:http://cssglobe.com/lab/tooltip/01/

我正在尝试在我的CMS中实现这一点。标题attr将通过自定义字段生成。如果未提供自定义字段内容,则仍会显示空的#tooltip弹出窗口,但如果标题attr为空,我想要删除它。

1 个答案:

答案 0 :(得分:0)

如果根本没有title属性,属性选择器会过滤掉只有title属性的该类的元素

$("a.tooltip[title]").hover(....