摘要: (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-17 16:03 happyzhu 阅读(140) 评论(0) 推荐(0)