我的案例(为什么“test1”没有出现在警报窗口中):
var Parent=function(){
this.test1= function(){
alert("test1");
}
}
var Child=function(){
this.prototype=new Parent();
}
var test=new Child();
test.test1();
http://jsfiddle.net/c3sUM/2/ (同样的代码在线尝试)</p>
谢谢