jquery – 如何清除每行的第一列?

前端之家收集整理的这篇文章主要介绍了jquery – 如何清除每行的第一列?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法尝试从每一行中删除第一列.我有一个砍伐是我对 jquery的理解.

我已经尝试了以下内容.

$("table:eq(2) tr td:first").remove() // this only removed the first cell

$("table:eq(2) tr td:first").each.remove() // didn't notice a difference

任何想法我做错了什么?

解决方法

尝试使用td:first-child而不是td:first

查看此页面了解更多信息:
http://api.jquery.com/first-child-selector/

附:几个建议你的jQuery选择器:

>使用表id或类而不是索引标识,因为如果在DOM中移动表,则选择器将会中断
我很确定你不需要“tr”

所以:

$("#myTable td:first-child").remove()
原文链接:https://www.f2er.com/jquery/175714.html

猜你在找的jQuery相关文章