JQuery QTip 插件 foreach 函数

发布于 2024-11-07 05:09:30 字数 667 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难如初 2024-11-14 05:09:30

看起来您有一个额外的嵌套“内容”地图。将这些行:更改

        content: {
            content:  $(this).next('.username').html()
        },

为:

        content: $(this).next('.username').html(),

It looks like you have an extra nested "content" map. Change these lines:

        content: {
            content:  $(this).next('.username').html()
        },

to this:

        content: $(this).next('.username').html(),
清醇 2024-11-14 05:09:30
$('.avatar').qtip({
    content: {
        content:  $(this).next('.username').html()
    },
    show: 'mouseover',
    hide: 'mouseout'
});

为什么你使用每个功能?

$('.avatar').qtip({
    content: {
        content:  $(this).next('.username').html()
    },
    show: 'mouseover',
    hide: 'mouseout'
});

Why you using each function?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文