jQuery
Chaque fonction
Recherche…
Utilisation de 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 chaque fonction
HTML:
<ul>
<li>Mango</li>
<li>Book</li>
</ul>
Scénario:
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
Un message est ainsi enregistré pour chaque élément de la liste:
0: mangue
1: livre
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow