ExtJs--09--javascript對象的方法的3種寫法 prototype通過原型設置方法效率最好
阿新 • • 發佈:2017-05-17
共享 name script div code javascrip 寫法 proto alert
/** * javascript對象的方法的3種寫法 推薦第三種 運行效率最好 */ function P(name , age){ this.name = name ; this.age = age ; //第一種方法 this.show = function(){ alert(this.name); } this.doing = doing ; } //另外一種方法 function doing(){ alert(this.name); } //第三種方法 //javascript中 prototype 原型 被全部類的實例對象共享 P.prototype.dd = function(){ alert(this.name); } var p1 = new P("mary",22); // Ext.Msg.alert("提示標題","提示信息") var p2 = new P("rose" , 25); // alert(p1.show()==p2.show()); // alert(p1.doing()==p2.doing()); alert(p1.dd()==p2.dd());
ExtJs--09--javascript對象的方法的3種寫法 prototype通過原型設置方法效率最好