1.js创建私有属性的方法 在 javascript 中所有对象的成员是公有的 构造函数也是如此: function Gadget ( ) { this.name = ' jack '; this.putName = function ( ) { return (' this is jack '); } } var obj = new Gadget(); console.log( obj.name ); //jack console.log( obj.putName ); //this is j