在tr之后获取具有指定ID的最近项

时间:2011-10-12 13:42:04

标签: jquery selection closest

我正在使用它:

$(this).closest('tr').next()

要选择table row,但我还需要在此tr之后选择具有指定ID的tr。

我试过这样做:

var a = $(this).closest('tr').next()
var b = $(a).closest('#itemrow').next()

var a工作正常,但未选择var b

这是什么问题?

2 个答案:

答案 0 :(得分:1)

var a = $(this).closest('tr').nextAll('#itemrow:first')

答案 1 :(得分:1)

我想如果你这样做会很好的

var a = $(this).closest('tr').next()
var b = a.closest('#itemrow').next()

a已经是一个jquery对象,不会用$()

包围它