确定 html 表中是否存在确切的行
我想要与 的解决方案相同这个问题而是为了确定表中是否确实存在一行。即我不想知道表中是否存在某个值,但我想知道确切的行 () 是否已经存在。
有什么想法吗:)?
I want the same as the solution to this question but to determine whether a row actually exists in a table. I.e. I do not want to know whether a value exists in a table but I want to know whether the exact row (<tr ....></tr>
) already exists.
Any ideas :)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只需要检查表是否包含特定行,您可以这样做:
请注意
if($("#rowID").length)
意味着元素的长度不等于零,这意味着如果它存在,您还可以更改选择元素的方式,您可以执行类似$("#tableID tr").length
的操作。我希望这可以帮助你
If you need just to check if table contains a specific row you could do like this:
Note that
if($("#rowID").length)
implies that length of the element not equal zero which means that it exists, you can also change the way you want to select the element with you could do something like that$("#tableID tr").length
.I hope this could help you