Mootools相当于$ .each

时间:2013-07-12 13:28:28

标签: javascript jquery mootools

我正在寻找相当于Jquery的Mootools:

$.each(data, function(i, item) {

我尝试过:

$$(data).each( function(i, item) {
Array.each(data, function(i, item) {
Object.each(data, function(i, item) {

但事实并非如此:S

感谢您的帮助

2 个答案:

答案 0 :(得分:3)

Array.each()应根据documentation

运作
Array.each(['Sun', 'Mon', 'Tue'], function(day, index){
    alert('name:' + day + ', index: ' + index);
}); // alerts 'name: Sun, index: 0', 'name: Mon, index: 1', etc.

看起来你刚刚在回调中得到了参数的顺序错误。它是

fn(item, index, object)

答案 1 :(得分:3)

你可以使用标准的javascript:

data.forEach(function(item, i) {
    // Your code here
}, this);