0

我正在使用一个插件来获得一个悬停在此处的单个元素上的弹出框

    $('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) 我如何定位它?

4

1 回答 1

0

也许试试这个:

 content: function(){return $(this).attr('pop-content')},
于 2013-06-17T14:53:29.027 回答