Buscar..


Uso basico

// 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 cada función

HTML:

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

Guión:

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

De este modo, se registra un mensaje para cada elemento de la lista:

0: Mango

1: Libro



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow