Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找到一个<td>值为 5 的地方。它是一个日历,所以只有一个 5 值。
<td>
您可以使用过滤方法:
$('td').filter(function(){ return $(this).text() === '5' })
使用:contains选择器:
var td = $("td:contains('5')");
编辑: 这也将选择带有15and25,如果你想要 exact5,然后使用.filter另一个答案所说的方法。
15
25
5
.filter