0
var indexoftr = $("#table tbody tr td:nth-child(1)").filter(function() {
return $(this).text().trim() == name;
}).get().closest("tr").index();
我想要得到的td
的TR的索引;如果該名稱是匹配我的要求,我有上面的代碼,但我得到獲得TR指數TD文本的jQuery的過濾器後
Uncaught TypeError: $(...).filter(...).get(...).closest is not a function
如何正確獲取父tr
的index
匹配td
文本
我明白了。那是解決方案。請給我幾分鐘時間來回答問題。 – Pekka