js对象

javascript中也有对象,脚本型语言第一次接触到这样的需求,在富客户端中写逻辑计算。

function popup(width,height){
this.width=width;
this.height=height;
}
var obj=new poput(200,180);
var width=obj.width;
上为简便用法。

你可能感兴趣的:(js对象)