Find td with specific text, and operate on the td right after that one?

前端 未结 6 671
逝去的感伤
逝去的感伤 2020-12-19 04:13

I\'m not very familiar with jQuery selectors, so would like some help.

I have a table like this:

6条回答
  •  情深已故
    2020-12-19 05:03

    for information

    var data ="Search string" $('#table1 td:contains('+data+')').next().text();

提交回复
热议问题