jquery.each()方法有多種用法,以下是常見的幾種用法:
$.each(array, function(index, value) {
// 在此處處理每個元素
});
$.each(object, function(key, value) {
// 在此處處理每個屬性
});
$('selector').each(function(index, element) {
// 在此處處理每個匹配的元素
});
$.each(array, function(index, value) {
// 在此處處理每個元素
if (someCondition) {
return false; // 中斷遍歷
}
});
$.each(array, function(index, value) {
// 使用 this 關鍵字引用當前元素
});
$('selector').each(function(index, element) {
// 使用 this 關鍵字引用當前匹配的元素
});
這些只是 jquery.each() 方法的常見用法,實際使用中還可以根據需求進行更多的定制。