我正在寻找相当于 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
感谢帮助
我正在寻找相当于 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
感谢帮助
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)
你可以只使用标准的javascript:
data.forEach(function(item, i) {
// Your code here
}, this);