我遇到了涉及第三方广告的jQuery UI工具提示的问题。当我将鼠标悬停在广告上时,会看到一个带有“第三方内容”文字的工具提示。我只希望工具提示出现在类.fa-question-circle
title=3rd party ad content
。我只是希望能够阻止用户看到它。 // Tooltips
$(".fa-question-circle").tooltip({
tooltipClass: "popup",
position: {
my: "center bottom-15",
at: "center top"
},
hide: false
});
答案 0 :(得分:0)
最后看起来像这样:
// Tooltips
$(document).tooltip({
tooltipClass: "popup",
items: ".fa-question-circle",
position: {
my: "center bottom-15",
at: "center top",
collision: 'none'
},
hide: false
});