我的asp.net页面中有jQuery qtip()函数,我需要从点击的项目中获取id。有谁知道怎么做?
例如,请在下面找到我的脚本代码......
$("#content a.toolTip").qtip({
content: { url: 'PageView.aspx?Param=' + '---get id---' }
)};
提前致谢。
[]'RPG
答案 0 :(得分:6)
如果您想在设置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 } });
});
答案 1 :(得分:0)
$(“#content a.toolTip”)。qtip({
内容:{url:'PageView.aspx?Param ='+ $(this).attr('id')}
)};
答案 2 :(得分:0)
如果你需要获得一些参数,你可以这样作弊;)
$("#content a.toolTip").each(function()
{
$(this).qtip({
content: { url: 'PageView.aspx?Param=' + $(this).attr('id') }
});
});