js获取数组里面的值
更新:HHH   时间:2023-1-7


var str = ["first", "second", "third"];
/* 循环获取 */
for(var x in str){
        alert(x+":"+str[x]);
}
返回web开发教程...