当一个tippy.js
工具提示被触发时,我希望能够从中得到“this”。
我试过了:
tippy(".sampleID",{
arrow:true,
placement: "bottom",
content(reference) {
const title = reference.getAttribute('title');
var tid=$(this).attr("id"); // is undefined
return title;
}
});
如何为悬停的类 .sampleID 获取“this”?