我有一个数组如下:
result = [];
result.push({label: 'test label 1', value: 'test value 1'});
result.push({label: 'test label 2', value: 'test value 2'});
$.each(result, function( key, value ) {
console.log(key);
console.log(value.label);
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
我正在尝试使用“console.log(key)”检索数组中项目的索引值,但它始终返回 0。如何在迭代时获取数组中每个项目的索引值?