欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

js循环的总结

程序员文章站 2022-04-29 19:54:18
...
js原生的循环有两种,一般的for循环和for...in循环。还有一种常用jQuery.each()循环。
一. js原生循环
a. for循环,代码如下:
var myArray = [1,2,3];
for (var i = 0; i ");
     i++;
  }
console:
BMW Volvo Saab Ford
do-while循环:
  var x="";
  var i= 0;
  do{
     x=x + "该数字为 " + i + "
"; i++; console.log(x); } while (i   
  • a
  •   
  • b
  •   
  • c
  • $("li").each(function(){ alert($(this).text()) }); b. 遍历数组 var arr = [1,2,3]; $.each(arr,function(i){ console.log((arr[i])); }); console: 1,2,3 c. 循环对象 var myObject = {"one":1,"two":2,"three":3}; $.each(myObject,function(i){    console.log(myObject[i]); }); console: 1,2,3 d. 循环二维数组,代码如下: var myArray = [[1,2,3],[4,5,6],[7,8,9]]; $.each(myArray,function(i,item){    console.log(item[0]); }); console: 1,4,7 e. 循环控制语句: return false;跳出这个循环 return true;继续下一个循环
    相关标签: js循环的总结