jQuery的each函数在DOM操作中具有以下优势:
$('div').each(function() {
console.log($(this).text());
});
var numbers = [1, 2, 3, 4, 5];
$.each(numbers, function(index, value) {
console.log(index + ': ' + value);
});
$('div').css('color', 'red').each(function() {
console.log($(this).text());
});
$('div').each(function() {
if ($(this).text() === 'stop') {
return false; // 终止迭代
}
console.log($(this).text());
});