gpt4 book ai didi

jquery qtip 未在正确的位置显示独特的工具提示

转载 作者:行者123 更新时间:2023-12-01 03:25:16 24 4
gpt4 key购买 nike

我有一张 table 。在每个表中,当有人将鼠标悬停在 TR 上时,我希望它通过 qtip 显示工具提示。

这是我的 jquery 代码:

    $('.contacttr').qtip({

content: {
text: $(this).find('.contactinfo')
},
position: {
my: 'bottom center',
at: 'center',
target: $(this).find('.contactname')
}

})

这是我的 html:

<tr class="contacttr">
<td class="contactname"><div class="contactinfo">info goes here</div>Persons Name</td>
<td>joe@gmail.com</td>
<td>123 fake street</td>
</tr>

<tr class="contacttr">
<td class="contactname"><div class="contactinfo">info goes here</div>Persons Name</td>
<td>joe@gmail.com</td>
<td>123 fake street</td>
</tr>

<tr class="contacttr">
<td class="contactname"><div class="contactinfo">info goes here</div>Persons Name</td>
<td>joe@gmail.com</td>
<td>123 fake street</td>
</tr>

问题是工具提示仅显示在顶行,并且它显示所有 contactinfo div 内的内容,而不仅仅是悬停在行内的内容。

最佳答案

我认为你的问题是:

text: $(this).find('.contactinfo')
// ...
target: $(this).find('.contactname')

当您调用$('.contacttr').qtip()时正在评估而不是当 qTip 激活时。所以,this不会是<tr>.find不会找到您期望的单个元素。

最简单的解决方案是将 qTip 绑定(bind)包装在 .each 中:

$('.contacttr').each(function() {
var $this = $(this);
$this.qtip({
content: {
text: $this.find('.contactinfo')
},
position: {
my: 'bottom center',
at: 'center',
target: $this.find('.contactname')
}
});
});

然后this将是<tr>当您评估 $this.find('.contactinfo') 时您希望它成为和$this.find('.contactname') .

您也许可以使用 callbacks动态构建工具提示,但我对 qTip 不太熟悉,不知道它的效果如何。

关于jquery qtip 未在正确的位置显示独特的工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5923768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com