有什么方法可以选择仅包含指定文本的 td 而不包含其他内容?我尝试了以下方法:
$("tr td:contains('1')")
但它也会td
在 a 的文本中返回具有 1 的 s td
。需要明确的是,我试图<td>1</td>
从下面给出的 html 中获取,但它一直返回所有这些td
s。
<tr>
<td>1</td>
<td>This contains 1 as well</td>
<td><td>And this one contains 1 as well</td>
</tr>
有什么方法可以强制它只返回那些td
只包含1
在其文本中的 s 而没有其他内容?