javascript循环遍历数组输出key value
用$.each方法肯定不行的 所以采用如下方法
<pre>
markers = [];
markers[2]=3;
markers[3]=7;
for(var key in markers){
console.log( key )
console.log( markers[key] )
}
</pre>
javascript循环遍历数组输出key value
用$.each方法肯定不行的 所以采用如下方法
<pre>
markers = [];
markers[2]=3;
markers[3]=7;
for(var key in markers){
console.log( key )
console.log( markers[key] )
}
</pre>