JQuery QTip 插件 foreach 函数
我的 qtip 插件有问题。当我将鼠标悬停在用户头像上时,qtip div 中未显示。 我的用于列出用户的代码:
<% foreach (var user in Model){%>
<div class="avatar">
<img src="<%=Html.Encode(user.showavatar())%>">
</div>
<div class="username" style="display:none">
<%=Html.Encode(user.Username) %>
</div>
<%}%>
当鼠标悬停在用户 div 上时显示用户名的 JQuery 代码。
$('.avatar').each(function () {
$(this).qtip({
content: {
content: $(this).next('.username').html()
},
show: 'mouseover',
hide: 'mouseout'
})
});
有什么建议吗?
I have a problem with qtip plugin. Notting shown in qtip div when I mouseover a user avatar.
My code for listing users:
<% foreach (var user in Model){%>
<div class="avatar">
<img src="<%=Html.Encode(user.showavatar())%>">
</div>
<div class="username" style="display:none">
<%=Html.Encode(user.Username) %>
</div>
<%}%>
My JQuery Code for show username when mouseover a user div.
$('.avatar').each(function () {
$(this).qtip({
content: {
content: $(this).next('.username').html()
},
show: 'mouseover',
hide: 'mouseout'
})
});
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来您有一个额外的嵌套“内容”地图。将这些行:更改
为:
It looks like you have an extra nested "content" map. Change these lines:
to this:
为什么你使用每个功能?
Why you using each function?