javascript:prototype对象的用法
在类而不是变量中,为类定义的名称添加方法。
1 <html> 2 <head> 3 <title>1</title> 4 </head> 5 <body> 6 <script language='javascript'> 7 function Me(){} 8 Me.prototype.fun=function(x){ 9 return x; 10 } 11 Me.prototype.sun=function(){ 12 document.write("<font color='red'><strong>hello</strong></font>"); 13 } 14 var obj=new Me(); 15 alert(obj.fun(33)); 16 obj.sun(); 17 </script> 18 19 </body> 20 </html>