javaScript的面向对象的写法

function student()
{
this.name="黄龙";
this.age=22;
this.speak=function()
{
document.write(this.name+this.age);
}
}
var myStudent=new student();
myStudent.age=23;
myStudent.speak();




posted @ 2011-07-08 20:21  黄龙  阅读(180)  评论(0编辑  收藏  举报