确定 html 表中是否存在确切的行

发布于 2025-01-05 09:52:49 字数 240 浏览 0 评论 0原文

我想要与 的解决方案相同这个问题而是为了确定表中是否确实存在一行。即我不想知道表中是否存在某个值,但我想知道确切的行 () 是否已经存在。

有什么想法吗:)?

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 技术交流群。

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

发布评论

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

评论(2

许一世地老天荒 2025-01-12 09:52:49

如果您只需要检查表是否包含特定行,您可以这样做:

if($("#rowID").length){
   //Horray you have the row you specified.
}
else{
   //what you should do when the row doesn't exist
}

请注意 if($("#rowID").length) 意味着元素的长度不等于零,这意味着如果它存在,您还可以更改选择元素的方式,您可以执行类似 $("#tableID tr").length 的操作。

我希望这可以帮助你

If you need just to check if table contains a specific row you could do like this:

if($("#rowID").length){
   //Horray you have the row you specified.
}
else{
   //what you should do when the row doesn't exist
}

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

叹梦 2025-01-12 09:52:49

很简单,只需检查表格的 html 即可。

if($("#tbodyAvailableRooms").html()==""){
     //Dose not exist row in HTML Table
}
else
{
    //Dose not exist row in HTML Table
}

it so simple just check in html of table.

if($("#tbodyAvailableRooms").html()==""){
     //Dose not exist row in HTML Table
}
else
{
    //Dose not exist row in HTML Table
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文