Ricerca…


Uso di base

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

HTML:

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

script:

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

Viene quindi registrato un messaggio per ciascun elemento nell'elenco:

0: Mango

1: libro



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow