上一页 1 ··· 5 6 7 8 9
摘要: 1 // JavaScript Document 2 //创建三个构造函数 3 function Shape(){ 4 this.name='ahape'; 5 this.toString=function(){return this.name;} 6 } 7 8 function TwoDShape(){ 9 this.name=''2D shape; 10 } 1... 阅读全文
posted @ 2016-11-23 15:00 浪涛飞 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9