美文网首页
js 关于数组和遍历

js 关于数组和遍历

作者: a_foo | 来源:发表于2017-02-05 17:01 被阅读0次

    1.var signArray=[];//相当于 var signArray = new Array();

    ar arr = ["one","two","three","four","five"];

    var obj = { one: 1, two: 2, three: 3, four: 4, five: 5 };

    遍历数组

    var text ="Array ";

    i:表示索引,从0开始。

    jQuery.each(arr,function(i, val) {

    text = text +" #Index:" + i +":" + val;

    });

    console.log(text);

    //Array  #Index:0:one #Index:1:two #Index:2:three #Index:3:four #Index:4:five

    遍历对象

    text ="Object ";

    i:表示键;val:表示值;

    jQuery.each(obj,function(i, val) {

    text = text +"Key:" + i +", Value:" + val;

    });

    console.log(text);

    //Object Key:one, Value:1Key:two, Value:2Key:three, Value:3Key:four, Value:4Key:five, Value:5

    相关文章

      网友评论

          本文标题:js 关于数组和遍历

          本文链接:https://www.haomeiwen.com/subject/mlueittx.html