日期:2014-05-16 浏览次数:20347 次
User.prototype.sayHello=function(){这样的话弹出hello
alert("hello");
}
user.sayHello();
var user=new User();User.prototype={ff报user.sayHello is not a function
sayHello:function(){
alert("hello");
}
}user.sayHello();
function User(){
//code here
}
var user=new User()
User.prototype.sayHello=function(){
alert("hello");
}
User.prototype={
sayHello:function(){
alert("hello");
}
}
function User(){
//code here
}
var methods={
sayHello:function(){
alert("hello");
}
}
methods={
sayHello:function(){
alert("hello");
},
sayWord:function(){
alert("word");
}
}
User.prototype=methods;
var user=new User();
user.sayWord();