function Person(){ this.a=function(){ window.alert("a"); } this.b=function(){ window.alert("b"); } this.c="c"; this.d="d"; } var p=new Person(); p.a(); //p["b"]; window.alert(p["c"]); window.alert(p["d"]);
運行結果:先后輸出a,c,d.
function Person(){ this.a=function(){ window.alert("a"); } this.b=function(){ window.alert("b"); } this.c="c"; this.d="d"; } var p=new Person(); p.a(); //p["b"]; window.alert(p["c"]); window.alert(p["d"]);
運行結果:先后輸出a,c,d.
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。