[数组] {对象} 取数组用for 取对象用点

Posted --3q

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[数组] {对象} 取数组用for 取对象用点相关的知识,希望对你有一定的参考价值。

$.ajax(
                  type:"post",
                  async:false,
                  url:"data.php",
                  data:,
                  dataType:"json",
                  success:function(result)

				  //["public_zao":53,"public_zhong":54,"public_wan":53,"public_zao":56,"public_zhong":59,"public_wan":57,"public_zao":62,"public_zhong":114,"public_wan":93,"public_zao":58,"public_zhong":113,"public_wan":90]
				  //  [数组]   {对象} 取数组用for 取对象用点
                    if (result) 
                      for (var i = 0; i < result.length; i++) 
                          arr1.push(result[i].public_zao);//push() 方法可向数组的末尾添加一个或多个元素,并返回新的长度。
                          arr1.push(result[i].public_zhong);
						  arr1.push(result[i].public_wan);
                      
                    
                  
                )

  

以上是关于[数组] {对象} 取数组用for 取对象用点的主要内容,如果未能解决你的问题,请参考以下文章

在 js 里面 对象属性名字 带减号 怎么取

请教下json里用多个值的时候,啥时候用数组的中括号啊

C++_第七章函数的基本知识_求阶乘的子函数_ 函数参数类型为数组_ 求数组内所有元素和部分元素和的方法_实现了先从键盘输入到一个数组中,再用for循环取读出数组中的元素 for循环也可以用bre(

vue 数组对象取对象的属性: Cannot read property 'xxxx' of undefined

拉取数组对象值然后推送到另一个数组

js操作对象和数组对象 取key/value