标签:方式 func his round log 更改 name java 方法
字面量也称单例模式
var person = { username: ‘wuyushuo‘, age: 22, say: function() { console.log(‘hello‘) }, getname: function() { return this.username; }, getage: getage //在对象外定义,不定义会报错 } // 对象外定义对象中的方法 function getage() { return person.age } // 再次创建新的空间模块 person.hello = { gettime: function() { return new Date() } } // 可以随意更改属性 person.username=‘abc‘ console.log(person.username); //abc
标签:方式 func his round log 更改 name java 方法
原文地址:http://www.cnblogs.com/wuyushuo/p/7244877.html