jQuery qtip() - 如何从单击的项目中获取 id

发布于 2024-09-13 22:52:00 字数 257 浏览 7 评论 0原文

我的 asp.net 页面中有 jQuery qtip() 函数,我需要从单击的项目中获取 id。有谁知道该怎么做?

作为示例,请在下面找到我的脚本代码...

$("#content a.toolTip").qtip({
     content: { url: 'PageView.aspx?Param=' + '---get id---'  }
)};

提前致谢。

[]'角色扮演游戏

I have the jQuery qtip() function in my asp.net page and I need to get the id from the clicked item. Does anyone know how to do it?

As an example, please find below my script code...

$("#content a.toolTip").qtip({
     content: { url: 'PageView.aspx?Param=' + '---get id---'  }
)};

Thanks in advance.

[]'rpg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

谈情不如逗狗 2024-09-20 22:52:00

如果您想在设置 qtip 时通过 this 引用该元素,您可以在 .each() 内部进行设置。这样 this 就引用了当前元素。

$("#content a.toolTip").each(function() {
        // Now "this" is a reference to the
        //    element getting the qtip
        // Get the ID attribte -------------------------------v
    $(this).qtip({ content: { url: 'PageView.aspx?Param=' + this.id } });
});

If you want to reference the element via this when setting up the qtip, you could do your setup inside of an .each(). That way this refers to the current element.

$("#content a.toolTip").each(function() {
        // Now "this" is a reference to the
        //    element getting the qtip
        // Get the ID attribte -------------------------------v
    $(this).qtip({ content: { url: 'PageView.aspx?Param=' + this.id } });
});
眼角的笑意。 2024-09-20 22:52:00

$("#content a.toolTip").qtip({

content: { url: 'PageView.aspx?Param=' + $( this ).attr( 'id' ) }

)};

$("#content a.toolTip").qtip({

content: { url: 'PageView.aspx?Param=' + $( this ).attr( 'id' ) }

)};

蓝礼 2024-09-20 22:52:00

如果你需要获取一些参数,你可以像这样作弊;)

$("#content a.toolTip").each(function()
{
    $(this).qtip({
        content: { url: 'PageView.aspx?Param=' + $(this).attr('id')  }
    });
});

If you need to get some parameters, you can cheat like this ;)

$("#content a.toolTip").each(function()
{
    $(this).qtip({
        content: { url: 'PageView.aspx?Param=' + $(this).attr('id')  }
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文