gpt4 book ai didi

javascript - 查找对象数组内对象的索引

转载 作者:行者123 更新时间:2023-12-03 11:05:32 24 4
gpt4 key购买 nike

我有一个从 HTML 项目列表生成的对象数组,在处理数组以获取项目索引和数组长度时遇到问题,总是为零。

我想要数据 ID 和值(列表 1,2,3 ..)。

HTML 代码

<ul class="list">
<li data-id="l1">list 1</li>
<li data-id="l2">list 2</li>
<li data-id="l3">list 3</li>
<li data-id="l4">list 4</li>
</ul>
<p></p>

JS代码

var arr = new Array();

$('.list li').each(function(){
var lid = $(this).attr('data-id');
var lval = $(this).html();
arr[lid] = lval;
});

$('p').html('array length = ' + arr.length + ' & index of list 1 is ' + arr.indexOf('l1'));

我是 javascript 和 jQuery 的新手,我不知道语法是否有错误。看看这个fiddle

最佳答案

尝试使用arr.push(lval);代替:

您尝试使用 l1 作为要添加数据的索引,但 l1 是字符串,索引必须是数字。 .push() 将添加给定元素作为给定数组中的最后一个元素,可能更多是您正在寻找的内容。

由于您需要 data-id 和元素的 html,因此可以通过执行 arr.push( [lid, lval] )< 创建一个多维数组

var arr = new Array();

$('.list li').each(function(){
var lid = $(this).attr('data-id');
var lval = $(this).html();
arr.push( [lid, lval] );
});

$('p').html('array length = ' + arr.length + ' & index of list 1 is ' + getIndexOfK(arr, 'l1'));


// access values like
for(var i = 0; i < arr.length; i++){

$('#myDiv').append( 'this element\'s data-id= '+ arr[i][0] +'------ this element\'s html= ' + arr[i][1]+'<br>' );
}






// function to get index of given element in a multidemensional array
// you may not actually need this, it was jsut to get your idex
// credit: http://stackoverflow.com/questions/16102263/to-find-index-of-multidimensional-array-in-javascript
function getIndexOfK(arr, k){
for(var i=0; i<arr.length; i++){
var index = arr[i].indexOf(k);
if (index > -1){
return [i, index];
}
}
return -1;
}
#myDiv{
margin-top:50px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<ul class="list">
<li data-id="l1">list 1</li>
<li data-id="l2">list 2</li>
<li data-id="l3">list 3</li>
<li data-id="l4">list 4</li>
</ul>
<p></p>

<div id="myDiv"></div>

关于javascript - 查找对象数组内对象的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27874728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com