两个数组的索引相同的放在一起,转为json发送给后台

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个数组的索引相同的放在一起,转为json发送给后台相关的知识,希望对你有一定的参考价值。

<script>
var ary=[];
var ary1=[];
var json=[];
document.getElementById(‘sub_add‘).onclick=function(){
var shipNum=document.getElementsByClassName(‘shipNum‘);
for(var i=0;i<shipNum.length;i++){
ary.push(shipNum[i].getAttribute(‘data-id‘));
ary1.push(shipNum[i].getAttribute(‘data-num‘));
}
var json1={};
for(var a=0;a<ary.length;a++){
json1[a]=[ary[a],ary1[a]];
}
document.getElementById(‘hidden‘).value=json1;
}

</script>

以上是关于两个数组的索引相同的放在一起,转为json发送给后台的主要内容,如果未能解决你的问题,请参考以下文章

js怎么遍历我后台传过来的Map

php如何将mysql数据转为数组

将具有相同键的 JSON 对象合并在一起

MySQL 索引结构 hash 有序数组

SYSLOG-NG:将相同的日志发送到弹性搜索中的两个不同索引

如何按相同的索引对两个数组进行排序?