jQuery each()函数允许我们遍历不同的数据集,例如数组或对象。 jQuery.each()是 jQuery 中最常用的函数之一。
句法:
$(selector).each(function(index, element))
$.each(function(index))
$.each() 本质上是对传统 for 或 for..in 循环的直接替换。
示例 1:此示例跳过第 4 步到下一次迭代,即第 5 步。
HTML
jQuery.each() method
HTML
jQuery.each() method
输出:
Step1 Step2 Step3 Step5
说明:在上面的代码中,您可以看到,当迭代到达“i=4”时,“if”条件变为“true”,返回非假值。所以它跳过下一次迭代,即第 4 步。
示例 2:
HTML
jQuery.each() method
输出:
1 2 4 5