获取tr后指定ID最接近的item

发布于 2024-12-09 14:02:20 字数 325 浏览 0 评论 0原文

我正在使用这个:

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

选择一个表行,但我还需要选择一个在此 tr 之后具有指定 id 的 tr。

我尝试这样做:

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

var a 工作正常,但它没有选择var b

到底是什么问题呢?

I'm using this:

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

To select a table row, but I also need to select a tr with specified id after this tr.

I've tried like to do it this way:

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

var a is working fine, but it does not select an var b.

What it the problem?

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

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

发布评论

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

评论(2

野鹿林 2024-12-16 14:02:20
var a = $(this).closest('tr').nextAll('#itemrow:first')
var a = $(this).closest('tr').nextAll('#itemrow:first')
痴情换悲伤 2024-12-16 14:02:20

我想如果你这样做它会工作得很好

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

a 已经是一个 jquery 对象不要用 $() 包围它

I guess if u do this it will work fine

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

a is already a jquery object dont surround it with $()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文