私の場合(「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>
ありがとう