我正在使用一个插件来获得一个悬停在此处的单个元素上的弹出框
$('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) 我如何定位它?