原型继承

if (typeof Object.create !== "function") { Object.create = function (o) { function F() { } F.prototype = o; return new F(); } } var Model = { inherited:f
相关文章
相关标签/搜索