作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含数据的数组 (JavaScript/jQuery),我想遍历它并将值打印到控制台。现在看起来很简单,但我似乎根本无法让它工作。目前我只有一个值,但我认为添加更多值不会有什么不同。
list = ["Example String"];
$j.each(list, function(item) {
console.info(item[0]); // Returns 0 in the console
console.info(item); // Returns undefined in the console
});
我想在控制台中显示为;
Example String
Example String 2
Example String 3
等等等等......
This is sort of on the right lines但仍然无法正常工作 - 我尝试了 .eq
。我只是认为,因为它没有 key ,所以使用 [0]
可能在某种程度上是错误的?这一定很明显,因为我只是不明白为什么这不起作用。
最佳答案
在 each()
处理函数中,第一个参数是迭代的当前索引。 第二个 参数是值本身。试试这个:
var $j = $.noConflict();
list = ["Example String 1", "Example String 2", "Example String 3"];
$j.each(list, function(i, item) {
console.info(item);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
另请注意,基本循环并不真正需要 jQuery。您可以使用 for
:
for (var i = 0; i < list.length; i+) {
console.log(list[i]);
}
或者,如果您可以使用 ECMA2015 功能,forEach()
,但请注意
list.forEach(function(item) {
console.log(item);
});
关于javascript - 遍历数组并显示值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41508554/
我是一名优秀的程序员,十分优秀!