jQuery
Jede Funktion
Suche…
Grundlegende Verwendung
// 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 jede Funktion
HTML:
<ul>
<li>Mango</li>
<li>Book</li>
</ul>
Skript:
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
Eine Nachricht wird somit für jeden Eintrag in der Liste protokolliert:
0: Mango
1: Buchen
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow