js 原型prototype

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 原型prototype相关的知识,希望对你有一定的参考价值。

function MyObject(name, size)
{
  this.name = name;
  this.size = size;
}

MyObject.prototype.height = "2.26 meters";
MyObject.prototype.tellHeight = function()
{
  return "height of "+this.name+" is "+this.height;
}

///////使用
var myobj1 = new MyObject("haha", 3);
if (myobj1.tellHeight)
{
  domDiv.innerhtml += myobj1.tellHeight()+";
}

http://www.cnblogs.com/lidabo/archive/2012/01/05/2313481.html

 

















以上是关于js 原型prototype的主要内容,如果未能解决你的问题,请参考以下文章

Java原型模式(思维导图)

原型模型

彻底理解js的原型链

js原型链和继承的理解

web前端:理解js原型链

js中原型和原型链理解