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.