2
array_of_strings = ["this", "is", "my", "array", "of", "strings"]

array_of_strings.each(function(val, i) {  console.log(i)  })

どちらが返されますか:

TypeError: Object has no method 'each'

この方法で配列を反復処理できると思いました。

4

1 に答える 1

5

あなたが持っているのはjQueryオブジェクトを反復するためのものです。以下のように使用する必要があり$.eachます、

//                       index----v   v-----value
$.each(array_of_strings, function(i, val) {  console.log(val)  });

また、$.each関数内のパラメータは(index,value)

于 2012-11-12T19:16:54.150 に答える