我需要在对象字面量中从子对象调用父属性。

12 浏览
0 Comments

我需要在对象字面量中从子对象调用父属性。

我尝试从子对象调用父属性,

var parentObj = {  
   attr1:1,  
   attr2:2,   
   childObj:{  
      method1:function(){  
         return this.attr1 * this.attr2;  
      }  
   }  
}

但是它不起作用。

0