首页 相关文章 Prototype实战教程----8.顶层对象

Prototype实战教程----8.顶层对象

htmlheadtitle顶层元素/titlescript src="prototype.js"/scriptscriptvar Person=Class.create();Person.prototype={  initialize:function(){},  name:'',  birthday:'',  age:'',  Show:function(){alert("This is "+this.name);}  };  function TestPerson()  {    var p=new Person();    p.name="Tom";    p.age=4;    p.birthday="1997-7-1";    p.Show();    };    var User=Class.create();        User.prototype={      initialize:function(){},      userid:'',      Report:function()      {        alert("UserID...[ 查看全文 ]

2016-02-19 标签:

Prototype实战教程----8.顶层对象的相关文章

手机页面
收藏网站 回到头部