12

我试图找到一个<td>值为 5 的地方。它是一个日历,所以只有一个 5 值。

4

2 回答 2

23

您可以使用过滤方法:

$('td').filter(function(){
    return $(this).text() === '5'
})
于 2012-10-05T13:06:28.107 回答
8

使用:contains选择器:

var td = $("td:contains('5')");

编辑: 这也将选择带有15and25,如果你想要 exact5,然后使用.filter另一个答案所说的方法。

于 2012-10-05T13:05:07.283 回答