获取tr后指定ID最接近的item
我正在使用这个:
$(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想如果你这样做它会工作得很好
a 已经是一个 jquery 对象不要用 $() 包围它
I guess if u do this it will work fine
a is already a jquery object dont surround it with $()