8

我有以下提示,在悬停时 Ajax 调用会去并获取数据,创建内容并显示它。但它不适用于动态内容,因为在页面加载时

<span class="more-tags otherPostTags" data-postId="{{$post->id}}">...</span>

在页面上是静态的,但在选项卡中也是动态的。

所以下面的代码适用于静态

<span class="more-tags otherPostTags" data-postId="{{$post->id}}">...</span>

但不适用于动态。

<div id="template" style="display: none;">
    Loading a new image...
</div>

<span class="more-tags otherPostTags" data-postId="{{$post->id}}">...</span>

提示 jquery :

const template = document.querySelector('#template');
const initialText = template.textContent;

const tip = tippy('.otherPostTags', {
    animation: 'shift-toward',
    arrow: true,
    html: '#template',
    onShow() {
        const content = this.querySelector('.tippy-content')
        if (tip.loading || content.innerHTML !== initialText) return
        tip.loading = true
        node = document.querySelectorAll('[data-tippy]');
        let id = node[0].dataset.postid;
        $.ajax({
            url: '/get/post/'+id+'/tags',
            type: 'GET',
            success: function(res){
                let preparedMarkup = '';
                res.tags.map(function(item) {
                    preparedMarkup +=
                        '<span class="orange-tag" style="background-color: '+item.color+'">'+
                            item.name +
                        '</span>';
                });
                content.innerHTML = preparedMarkup;
                tip.loading = false
            },
            error: function(error) {
                console.log(error);
                content.innerHTML = 'Loading failed';
                tip.loading = false
            },
        });
    },
    onHidden() {
        const content = this.querySelector('.tippy-content');
        content.innerHTML = initialText;

    },
    popperOptions: {
        modifiers: {
            preventOverflow: {
                enabled: false
            },
            hide: {
                enabled: false
            }
        }
    }
});

我在这里想念什么?

4

2 回答 2

10

这在更新的 Tippy 版本中发生了变化。

您需要delegate从以下位置导入方法tippy.js

import { delegate } from 'tippy.js';

target比使用根元素上的委托方法启动您的提示工具提示,并通过道具设置将具有实际工具提示的元素的选择器:

delegate( '#root', {
  target: '[data-tippy-content]'
} );

确保该#root元素实际存在于您的应用程序中或使用其他任何东西body,例如。然后确保为实际元素赋予data-tippy-content属性或相应地更改target选择器。

于 2019-11-26T06:29:48.373 回答
5

如果您希望 Tippy 在新元素上激活,您需要使用事件委托。Tippy 文档涵盖了这一点(令人沮丧的是,没有可链接的锚点;搜索“事件委托”)。您使用父容器元素,然后告诉 Tippy 使用什么选择器来匹配子元素。文档中的示例是:

tippy('#parent', {
  target: '.child'
})

...因此,对于您的示例,使用容器中的所有.otherPostTags元素(document.body在最坏的情况下)并.otherPostTags用作target

tippy('selectorForParentElement', {
  target: '.otherPostTags'
});

现场示例:

tippy('#container', {
  target: '.otherPostTags'
});
var counter = 0;
var timer = setInterval(function() {
  ++counter;
  var tag = document.createElement("span");
  tag.title = "Tip for span #" + counter;
  tag.className = "otherPostTags";
  tag.innerHTML = "Span #" + counter;
  document.getElementById("container").appendChild(tag);
  if (counter === 6) {
    clearInterval(timer);
  }
}, 250);
.otherPostTags {
  color: white;
  background-color: #2020FF;
  border: 1px solid black;
  padding: 2px;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 4px;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/tippy.js/2.5.4/tippy.css" rel="stylesheet"/>

<div id="container"></div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/tippy.js/2.5.4/tippy.min.js"></script>

于 2018-09-18T08:24:30.383 回答