日期:2014-05-16 浏览次数:20428 次
/** *example:Cooker.apply(A,{}); * * * @param object:扩展的目标参数 * @param config:扩展的参数 * @param defaults: * @return {Object} returns obj */ Cooker.apply = function(object, config, defaults) { if (defaults) { Cooker.apply(object, defaults); } if (object && config && typeof config == 'object') { var key; for (key in config) { object[key] = config[key]; } } return object; };