jQuery
प्रत्येक कार्य
खोज…
मूल उपयोग
// 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 के प्रत्येक समारोह
HTML:
<ul>
<li>Mango</li>
<li>Book</li>
</ul>
स्क्रिप्ट:
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
एक संदेश इस प्रकार सूची में प्रत्येक आइटम के लिए लॉग किया गया है:
0: आम
1: पुस्तक
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow