var add_the_handlers = function (nodes) {
var helper= function (i) {
return function (e) {
alert(i);
};
};
var i;
for (i = 0; i < nodes.length; i += 1) {
nodes[i].onclick =helper(i);
}
};
时间: 2024-10-13 21:23:53
var add_the_handlers = function (nodes) {
var helper= function (i) {
return function (e) {
alert(i);
};
};
var i;
for (i = 0; i < nodes.length; i += 1) {
nodes[i].onclick =helper(i);
}
};