var arr1 = [ "a", "b", "c" , "d", "e" ];
$.each(arr1, function(){
alert(this);
});
Output: a b c d e
var arr2 = [[1, 2, 3], [ 4, 5, 6], [7, 8, 9]]
$.each(arr2, function(i, item){
alert(item[0]);
});
Output: 1 4 7
var obj = { one:1, two:2, three:3, four:4, five:5 };
$.each(obj, function(key, val) {
alert(obj[key] ; Method
jQuery each() brief discussion
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn