遍历字符串?

    var str = "abcdefj";
    for(var index in str){
        console.log(index,str[index]);
    }

控制台

你可能感兴趣的:(JS)