Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/10/2010, 20:45
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 5 meses
Puntos: 834
Respuesta: Problema con this y dos objetos relacionados

Probá así:
Código PHP:
<script type="text/javascript">
function 
testObject()
{
    
    
this.saySomething=function()
    {
        
alert('testObject');
    }
    
this.initialize=function(){
            var 
object2=new testObject2(this);
        
object2.testFunction();
    }
    return 
this.initialize();
}
 
function 
testObject2(handlerReference)
{
    var 
handler=handlerReference;
    
    
this.testFunction=function()
    {
        
handler.saySomething();
    }
}
 
function 
init()
{
    var 
object=new testObject();
}
init()
</script>