2012年12月19日
摘要: Object.extend = function(destination, source){ for (var property in source) { destination[property] = source[property]; } return destination; }/*字符串*/var string = new String("hello");var string1 = string;var string2 = string;string1 = string1+" world... 阅读全文
posted @ 2012-12-19 08:41 somesayss 阅读(299) 评论(0) 推荐(0) 编辑