Maison > Article > interface Web > js analyse l'objet tableau json en un tableau bidimensionnel
Cet article partage principalement avec vous du code sur l'analyse par js des objets de tableau json en tableaux bidimensionnels. J'espère qu'il pourra être utile aux amis dans le besoin
Le code clé est le suivant :
<.><script type="text/javascript">function zh(data)//用户将json数组对象解析成二维数组 { var arr = []; for(var i in data) { arr[i] = []; for(var j in data[i]) { arr[i].push(data[i][j]); } } return arr; } function addTable(getdata) {//将解析出来的二维数组显示 var p1=document.getElementById("p1"); var tab="<table border='1' width='200' >"; var arr =[]; arr = zh(getdata); for(var i =0;i<arr.length;i++) { tab+="<tr>"; for(var j = 0;j<arr[i].length;j++) { tab+="<td>"+ arr[i][j] +"</td>"; } tab+="</tr>"; } tab+="</table>"; p1.innerHTML=tab; }
</script> 相关推荐:
<a href="http://www.php.cn/js-tutorial-388752.html" target="_self">nodejs解析xml字符串为对象的实例</a><br><br>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!