User Objects...
Добрый вечер, господа, требуется помощь... есть код:
window.onload=function(){
div=document.createElement("DIV")
div.style.cssText="width:100px;height:100px;border :1px solid blue;"
document.body.appendChild(div);
user_obj=new UserObject();
user_obj.bg.call(div); // $1
}
function UserObject(){
this.color="blue";
}
UserObject.prototype.bg=function(){
//$2
this.style.backgroundColor="red";
}
Как в методе bg (отмечено $2) достучаться до свойства color этого же объекта если this уже ссылается на HTML элемент div, смотри выше отмечено $1?
|