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 标签: