选择悬停元素?

时间:2013-06-17 14:45:43

标签: jquery jquery-plugins

我正在使用插件将鼠标悬停在单个元素上here

    $('td.more-info').popover({
        trigger: 'hover',
        title: "More Details",
        content: $(this).attr('pop-content'),
        position: "bottom",
        classes: "popover-class"
    });

从上面的代码我想创建一个属性(pop-content),我将把内容放到popover内容中 ,使用$(this)不针对(td.more-info)我该如何定位它?

1 个答案:

答案 0 :(得分:0)

也许试试这个:

 content: function(){return $(this).attr('pop-content')},