摘要: /*原型对象*/ /*定义原型对象的固定格式*/ function Product(){ this.name = 'iphone7' this.price = 6666 } Product.prototype = { buy:function(){}, addToCart:function(){} } ... 阅读全文
posted @ 2016-08-28 11:24 binperson 阅读(118) 评论(0) 推荐(0) 编辑