jQuery qtip() - 如何从单击的项目中获取 id
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想在设置 qtip 时通过
this
引用该元素,您可以在.each()
内部进行设置。这样this
就引用了当前元素。If you want to reference the element via
this
when setting up the qtip, you could do your setup inside of an.each()
. That waythis
refers to the current element.$("#content a.toolTip").qtip({
content: { url: 'PageView.aspx?Param=' + $( this ).attr( 'id' ) }
)};
$("#content a.toolTip").qtip({
content: { url: 'PageView.aspx?Param=' + $( this ).attr( 'id' ) }
)};
如果你需要获取一些参数,你可以像这样作弊;)
If you need to get some parameters, you can cheat like this ;)