Jquery find table cell where value is X

ⅰ亾dé卋堺 提交于 2019-12-21 07:34:03

问题


I am trying to find a <td> where the value is 5. It is a calender so there will only be one 5 value.


回答1:


You can use filter method:

$('td').filter(function(){
    return $(this).text() === '5'
})



回答2:


Use the :contains selector:

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

Edit: This will also select the td with 15 and 25, if you want exact 5, then use the .filter method as the other answer said.



来源:https://stackoverflow.com/questions/12746846/jquery-find-table-cell-where-value-is-x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!