如何获取数组的第一个元素?

2022-08-29 23:37:01

如何从这样的数组中获取第一个元素:

var ary = ['first', 'second', 'third', 'fourth', 'fifth'];

我试过这个:

alert($(ary).first());

但它会回来。所以我需要从数组中获取第一个元素,它应该是元素。[object Object]'first'


答案 1

喜欢这个

alert(ary[0])

答案 2

你为什么要jQuery化一个普通的JavaScript数组?使用标准的 JavaScript!

var ary = ['first', 'second', 'third', 'fourth', 'fifth'];
alert(ary[0]);

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array

needs more jQuery

来源,由 bobince 提供