수색…


기본 사용

// array
var arr = [
   'one',
   'two',
   'three',
   'four'
];
$.each(arr, function (index, value) {
  console.log(value);
  
  // Will stop running after "three"
  return (value !== 'three');
});
// Outputs: one two three

jQuery 각 함수

HTML :

<ul>
  <li>Mango</li>
  <li>Book</li>
</ul>

스크립트:

$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});

따라서 메시지는 목록의 각 항목에 대해 기록됩니다.

0 : 망고

1 : 예약



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow