我有一个转发器,每行都会显示一个工具提示,每个工具提示都会包含行ID,这是我的代码:
$(document).ready(function () {
$('tr.SomeClass').qtip({
content: {
text: // here I want to get the id of the row
},
答案 0 :(得分:3)
你需要使用.each()
来遍历这里的元素,如下所示:
$(document).ready(function () {
$('tr.SomeClass').each(function() {
$(this).qtip({
content: {
text: "My ID is: " + this.id
}
});
});
});
使用这种方法,this
引用每个tr.SomeClass
元素,而不是您所处的任何上下文(之前document
),因为您在{{1}处理程序)。