復制代碼 代碼如下:
<script type="text/javascript">
function people(name){
this.name=name;
this.introduce=function(){ //對象方法
alert("my name is"+this.name);
}
}
people.run=function(){ //類方法
alert("i can run");
}
people.prototype.jump=function(){ //原型方法
alert("i can jump")
}
var p1=new people("vincent");
p1.introduce();
people.run(); //c#中的static
p1.jump();
</script>
復制代碼 代碼如下:
function common(){
//.....
}
common.prototype=new Object();
Object對象是common的原型,Object對象的屬性和方法復制到了common上