jQuery:排除那些td,有子元素Label with class "control-label"

jQuery: Exclude those td, having child element Label with class "control-label"

我正在尝试 select 使用 jQuery 文档中的所有 td,不包括那些具有 class 名称 "control-label".[=15= 子元素标签的 td ]

<td width="30%"><label class="control-label">IP Address</label></td>

我试过了:

jQuery("table td").not("table td > label.control-label").attr('width','');

尝试

jQuery('table td:not(:has( > .control-label[width]))')

试试这个选择:

$('td:not(:has(> .control-label))');

我认为以下代码对您有所帮助。

$('td label:not(.control-label)');