class 表中的每一行都有两个.js-type
类,table
并且行数很多。
我正在使用以下内容来填充所有.js-type
对象的数组:
$('.js-type').each(function(){
myArray.push($(this).text());
});
我的问题是,有没有办法让我用类中每一行中的最后一个元素填充同一个数组.table
?
这是我尝试过的:
尝试1:
$('.js-type:last-child').each(function(){
myArray.push($(this).text());
});
尝试2:
$('.js-type:last').each(function(){
myArray.push($(this).text());
});
尝试3:
$('.js-type').eq(1).each(function(){
myArray.push($(this).text());
});
我很感激任何关于这个的建议。
提前谢谢了!