function NewClass() {
this.position = "absolute";
this.top="45px";
this.left="800px";
this.color="#A3A3A3";
this.fontStyle="italic";
this.width="10px";
this.height="10px";
this.backgroundColor="green";
}
var obj = new NewClass();
а если как-то так?только это не работает,оно создает объект,но его не видно
|