JQuery选择删除class!=“dgItem”

时间:2010-09-15 13:44:58

标签: jquery html

您好我要删除以下

<tr><td style="padding-left:20px;" class="content">

这适用于

$(".content").first().remove();

但是在我的一些页面上,我有这个

<tr class="dgItem"><td class="content">

它被删除了。 是否可以让JQuery只选择第一个例子?

2 个答案:

答案 0 :(得分:6)

试试这个:

示例: http://jsfiddle.net/7c7kD/

$('tr:not(.dgItem) > td.content').remove();

使用jQuery's :not() selector,这将删除td.content元素,这些元素是<tr>的直接子元素,但没有类.dgItem

答案 1 :(得分:1)

为什么不在第一类表格列class="content anotherclassname"中添加第二个类名?然后拨打$(".anotherclassname").remove();