参见英文答案 >
How can I get the value from the last td in the tr tag in jQuery?3个
我必须使用相同的类名测试表,我需要使用jquery找出第一个表的每个tr的最后一个td
我必须使用相同的类名测试表,我需要使用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");