qTip2:使用相对 Div-container 作为 qTip 内容

qTip2: using relative Div-container as qTip content

我可以定义一个亲戚 div 作为 qTip2 的内容吗? 这是一个 fiddle,应该显示问题:https://jsfiddle.net/0p1mgdse/

content: {
    text: $(this).parents(".item").find('.qtip-content-container')
},

...无法显示通讯员 div(因为在实际代码中有很多 "items",我不能使用绝对 div 作为内容)。

我自己发现,必须通过封装在 each() 中的 .q tip() 调用:

$('a.qtip-title-readinglist').each(function() {
     $(this).qtip({
     ....

https://jsfiddle.net/ovstne29/

测试一下

[https://jsfiddle.net/0p1mgdse/1/][1]

content: {
        text: $('a.qtip-title-readinglist').parents(".item").find('.qtip-content-container')
    }