如何使用jQuery选择一个表列

前端之家收集整理的这篇文章主要介绍了如何使用jQuery选择一个表列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想选择一个表列,我所知道的是列的标题文本。 (th.innerText)

我尝试了以下代码,但它不起作用:

ownerIndex = $('th:contains("Owner")').index();
$('table tr td:nth-child(ownerIndex)')

有任何想法吗?

谢谢

解决方法

好。我找到了一个解决方案:
$('table tr td:nth-child('+ownerIndex+')')
原文链接:https://www.f2er.com/jquery/183588.html

猜你在找的jQuery相关文章