Posted in Javascript onNovember 19, 2010
<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上
js里的prototype使用示例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@