我无法尝试从每一行中删除第一列.我有一个砍伐是我对
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()