摘要: // 使用inherited函数创建对象 这个对象继承原型对象中 function inherit(p) { if (p== null) throw TypeError(); if (Object.create) return Object.create(p); var t = typeof p; 阅读全文
posted @ 2019-04-30 14:34 Steven_Rain 阅读(1291) 评论(0) 推荐(0)