Поиск…


Основное использование

// 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