Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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'
この方法で配列を反復処理できると思いました。
あなたが持っているのはjQueryオブジェクトを反復するためのものです。以下のように使用する必要があり$.eachます、
$.each
// index----v v-----value $.each(array_of_strings, function(i, val) { console.log(val) });
また、$.each関数内のパラメータは(index,value)
(index,value)