javascipt对象和json对象的创建简单实例

 

           javascript面向对象编程,EXTJS就是这么包装出来的,慢慢包装包装,装到最后你都不知道它是用JS写的了,呵呵,  玩笑话

/**
 * JSON对象,已经是对象了
 * @type 
 */
var person={
name :'张三',
age :19,
say:function(){
alert("my name called "+this.name+" and my age is "+this.age);
}	
}
/**
 * 定义Person类
 */
var Person=function(name,age){
this.name=name;
this.age=age;
};
/**
 *申明Person类方法 
 */
Person.prototype.say=function()
{
alert("my name called "+this.name+" and my age is "+this.age);
};
person.say();
var per=new Person(person.name,person.age);
per.say();

 

你可能感兴趣的:(JavaScript,编程,json,prototype)