摘要:
(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 ///< 阅读全文