解释一段javascript程序
var Class = {create: function() {
return function() {
this.initialize.apply(this, arguments);
}
}
}
function $() {
if (arguments.length == 1) return get$(arguments[0]);
var elements = [];
$c(arguments).each(function(el){
elements.push(get$(el));
});
return elements;
function get$(el){
if (typeof el == 'string') el = document.getElementById(el);
return el;
}
}
我刚学js里边的格式看不懂 ,和教程上的不一样