![]() |
#2
foktime2009-09-24 09:13
|
var Extend = function(destination, source) {
for (var property in source) {
destination[property] = source[property];
}
return destination;
这段代码是什么意思?高手指教