3

我正在寻找相当于 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

感谢帮助

4

2 回答 2

3

Array.each()应该根据文档工作:

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)
于 2013-07-12T13:32:10.840 回答
3

你可以只使用标准的javascript:

data.forEach(function(item, i) {
    // Your code here
}, this);
于 2013-07-12T13:32:18.857 回答