// ARRAYS
var arr = [
'one',
'two',
'three',
'four',
'five'
];
$.each(arr, function (index, value) {
console.log(value);
// Will stop running after "three"
return (value !== 'three');
});
// Outputs: one two three
因為不懂jQuery 的 each方法所以去找了教學
看網路上的範例是這樣寫的
想請教的是,最後面的outputs
為何是 one two three
return (value !== 'three');
這是表示,假如值不是three的話就中止吧
那 one two 也不是 three啊
不是應該一開始就中止嗎??
還請各位高人們解惑~~謝謝