使用jquery 查找每个tr的最后一个td

前端之家收集整理的这篇文章主要介绍了使用jquery 查找每个tr的最后一个td前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How can I get the value from the last td in the tr tag in jQuery?3个
我必须使用相同的类名测试表,我需要使用jquery找出第一个表的每个tr的最后一个td

请帮帮我

解决方法

jQuery 1.1.4介绍了 last-child selector

Description: Selects all elements that are the last child of their parent.

While :last matches only a single element,:last-child can match more than one: one for each parent.

$("table:first tr td:last-child");
原文链接:https://www.f2er.com/jquery/179089.html

猜你在找的jQuery相关文章