Могу ли я изменить контекст JavaScript «это»?

<code>var UI$Contract$ddlForm_change = function() {

    //'this' is currently the drop down that fires the event
    // My question is can I change the context so "this" represents another object? 
    this = SomeObject;

    // then call methods on the new "this"
    this.someMethod(someParam);   
};
</code>

Это возможно? Спасибо, ~ ck в Сан-Диего

Ответы на вопрос(3)

Ваш ответ на вопрос