gpt4 book ai didi

javascript - 将标识符放入数组内的对象

转载 作者:行者123 更新时间:2023-12-02 17:37:57 25 4
gpt4 key购买 nike

假设我创建了这个数组:

var arr = [1, "ikanej", b={name:"Olsi", surname : "Angjellari"}]

有没有办法用标识符引用该数组的第三个元素?

像这样

arr.b.name  // this doesn't work

不是这样的

arr[2].name // this does but you need to keep track of index.
// It would be easier to have an identifier

最佳答案

您应该创建一个对象而不是数组:

fiddle :http://jsfiddle.net/AV36f/1/

JS:

var arr = {0:1, 1:"ikanej", b:{name:"Olsi", surname : "Angjellari"}};

$('.body').append(arr.b.name);

关于javascript - 将标识符放入数组内的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22459047/

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