Sök…


Grundläggande användning

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

HTML:

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

Manus:

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

Ett meddelande loggas alltså för varje objekt i listan:

0: Mango

1: Bok



Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow