我需要两个具有不同内容的工具提示出现在我给出了 2 个相同类名的 4 个元素上。html 看起来像:
<sup>
<a href="" class="fas fa-info cs-info"></a>
</sup>
和
<sup>
<a href="" class="fas fa-info price-info"></a>
</sup>
(以上在 html 代码中出现了两次) javascript
Template.stepOne.onRendered(function(){
tippy('.cs-info', {
content: "some explanation Info 1",
});
tippy('.price-info', {
content: "some explanation Info 2",
});
}
当我只使用一个显示一个内容的小费时,问题是在使用第二个时也是如此..在 Meteor Blaze 中编写它的正确方法是什么?