(function($){ var A = function(){ this.name = 'aaaa'; this.sex = '0'; this.render(); retrun this; } A.prototype = { render : function(){ //一系列操作 } doit : function(){ //一系列操作 } } window['A'] = A; })(jQuery); //那么我在外部new一个对象AAA = new A();的时候我不希望可以通过AAA.render()来访问到A对象内的render方法、不希望通过AAA.name能得到A对象内的name属性该怎么做,我只希望一些函数和属性是公开的。
慕前端8664132
慕前端8664132
烽子
相关分类