0

我需要两个具有不同内容的工具提示出现在我给出了 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 中编写它的正确方法是什么?

4

1 回答 1

1

解决方案是将 javascript 代码移动到模板事件'mouseenter..cs-info'中,而不是onRendered

于 2020-05-22T16:29:56.507 回答