$.each(data, function(index, obj){ if (index == 1) { return; // 等於continue } else { return false; // 等於break } }); ```