摘要: // js代码 function User(){ //类成员的定义及构造函数 this.name = "hello"; this.age = 25; this.sayHello = function (){ console.log("here is class1"); }} // html页面 <s 阅读全文
posted @ 2018-05-18 14:43 baby孔祥超 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 前言: 下面两行代码都是创建一个数组对象myArray:var myArray=[];//等价于var myArray=new Array();同样,下面的两段代码也都是创建一个函数myFunction:function myFunction(a,b){ return a+b;}//等价于var m 阅读全文
posted @ 2018-05-18 10:39 baby孔祥超 阅读(114) 评论(0) 推荐(0) 编辑
摘要: // js代码 var user = { name:'tom', say:function(){ console.log("hello"); } } // html页面代码 <script type="text/javascript" > user.age = 25;//给user添加属性 user 阅读全文
posted @ 2018-05-18 10:06 baby孔祥超 阅读(459) 评论(0) 推荐(0) 编辑
摘要: // js代码 function class1(){ } // html页面代码 <script type="text/javascript"> // 知识点一:对对象属性方法进行操作 /*var cla1 = new class1(); cla1.name = 'jack';//给对象添加属性 c 阅读全文
posted @ 2018-05-18 09:47 baby孔祥超 阅读(264) 评论(0) 推荐(0) 编辑
摘要: // js代码 function class1(){ //类成员的定义及构造函数 this.name = "hello"; this.age = 25; this.sayHello = function (){ console.log("here is class1"); }} // html页面 阅读全文
posted @ 2018-05-18 09:17 baby孔祥超 阅读(121) 评论(0) 推荐(0) 编辑