jQuery.each( collection, callback(indexInArray, valueOfElement) )
collectionThe object or array to iterate over.
callback(indexInArray, valueOfElement)The function that will be executed on every object.
each 를 쓸때 callback function 에 첫번째 파라미터는 index 값이다. i++ .. 과 같다고 봐도 된다.
---------------------------------
from https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/forEach
Syntax
array.forEach(callback[, thisArg])
Parameters
callback
- Function to execute for each element.
thisArg
- Object to use as
this
when executingcallback
.
<script>
var arr = ['a','b','c','d','e'];
// item:a/index:0
arr.forEach(function (item,index) {
alert('item:'+item+'/index:'+index);
});
</script>
'IT > WEB' 카테고리의 다른 글
form 의 get post 전송...시 action url 의 값....전달여부 (0) | 2013.04.23 |
---|---|
닫기 이벤트 처리... (0) | 2012.07.24 |
자바스크립트 delete ? (0) | 2012.04.25 |
페이지의 이동과 브라우저의 인지,인식, 리다이렉트 http 302,200 (0) | 2012.01.13 |
@Controller 어노테이션... -2- HTML 폼... RequestMapping 과 해당 파라미터에 쓰일 어노테이션... (0) | 2012.01.13 |