摘要: (function(window, undefined) { ///Classes (or prototypial inheritors) if (typeof Object.create !== "function") { Object.create = function(o) { function F() { } F.prototype = o; return new F(); }; } ///Object properties var Class = { Init: function() { ///<summary> Constructor ///< 阅读全文
posted @ 2012-07-18 16:33 happyzhu 阅读(295) 评论(0) 推荐(0) 编辑