gpt4 book ai didi

javascript - 将表放入数组中

转载 作者:行者123 更新时间:2023-11-28 18:02:59 25 4
gpt4 key购买 nike

嘿,我有一张 table

<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>

我有一个数组要填充这些数据:

    var params = {
"fruit":"apple",
"test": "Nope",
"values": [
[Here,Must ,Come the header ],
[Here,must come ,the first table data],
[Here must,comt the ,second tabel data]
],
}

这只是 1 个表的示例一些表包含更多行。

如何确保整个数据都在数组中?

最佳答案

您需要嵌套循环才能达到所需的结果。请参阅下面的代码片段

 var params = {
"fruit":"apple",
"test": "Nope",
"values": [

],
}

$(function(){
$('button').click(function() {
$("#mytable tr").each(function(index, item){
var temp = []
if(index == 0) {
$(item).find('th').each(function(idx, col){
temp.push($(col).text());
})
}
$(item).find('td').each(function(idx, col){
temp.push($(col).text());
})
params.values.push(temp)
})
console.log(params);
})

})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="mytable">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
<button>Click</button>

关于javascript - 将表放入数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43206569/

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