js的forEach,jquery的each,for
Posted dandan9999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js的forEach,jquery的each,for相关的知识,希望对你有一定的参考价值。
var lis=document.querySelectorAll(".navCity li");
lis.forEach(function (ele,index)
console.log(ele);
console.log(index);
);
$(".navCity li").each(function (index,ele)
console.log(index);
console.log(ele);
);
var cars = ["BMW", "Volvo", "porsche", "Ford", "Fiat", "Audi"];
var text = "";
var i;
for (i = 0; i < cars.length; i++)
text += cars[i] + "<br>";
document.getElementById("demo").innerhtml = text;
以上是关于js的forEach,jquery的each,for的主要内容,如果未能解决你的问题,请参考以下文章
原生JS forEach()和map()遍历,jQuery$.each()和$.map()遍历
JS的forEach和map方法的区别,还有一个$.each
在jsp页面通过jstl标签的forEach循环标签获得后台数据,传到js中,通过jquery的each方法和click事件获得数据