摘要: var arr1 = [ "one", "two", "three", "four", "five" ]; $.each(arr1, function(){ alert(this); }); 输出:one two three four five var arr2 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] $.each(arr2, function(i, item){... 阅读全文
posted @ 2010-03-18 14:55 Cat Qi 阅读(547) 评论(0) 推荐(1) 编辑