// 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啊
不是应该一开始就中止吗??
还请各位高人们解惑~~谢谢