gpt4 book ai didi

javascript - 为什么所有表元素都被扔到第一个数组索引中?

转载 作者:行者123 更新时间:2023-11-28 14:40:29 24 4
gpt4 key购买 nike

我使用 Cheer.io 从表中抓取日期。页面设置如下:

 <tr>
<td>*other values*</td>
<td>16-12-2017</td>
<td>*other values*</td>
</tr>
<tr>
<td>*other values*</td>
<td>14-12-2017</td>
<td>*other values*</td>
</tr>
<tr>
<td>*other values*</td>
<td>12-12-2017</td>
<td>*other values*</td>
</tr>
<tr>
<td>*other values*</td>
<td>12-12-2017</td>
<td>*other values*</td>
</tr>

每当我执行此代码时:

let date= $('tr td:nth-child(2)').text();
jsonarr.push(date)
console.log(jsonarr);

所有日期都被放入一个数组索引中。我怎样才能在自己的索引中获取每个日期?

提前致谢

最佳答案

根据 text文档

Get the combined text contents of each element in the set of matched elements, including their descendants, or set the text contents of the matched elements.

您需要使用mapget

var date= $('tr td:nth-child(2)').map( function(){ 
return $(this).text()
}).get();
console.log(date);

演示

var date= $('tr td:nth-child(2)').map( function(){ return $(this).text() }).get();
console.log(date);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr>
<td>*other values*</td>
<td>16-12-2017</td>
<td>*other values*</td>
</tr>
<tr>
<td>*other values*</td>
<td>14-12-2017</td>
<td>*other values*</td>
</tr>
<tr>
<td>*other values*</td>
<td>12-12-2017</td>
<td>*other values*</td>
</tr>
<tr>
<td>*other values*</td>
<td>12-12-2017</td>
<td>*other values*</td>
</tr>
</table>

关于javascript - 为什么所有表元素都被扔到第一个数组索引中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48190024/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com