码迷,mamicode.com
首页 > 其他好文 > 详细

thisInObject

时间:2018-12-10 11:50:36      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:UNC   on()   function   console   this   object   jna   parent   fun   

var k = {
name:"kName"
,getName:function(){
console.info(this.name)
}
,getParentName:function(_this){
console.info(_this.name)
}
}

var j = {
name:"jName"
,getName:function(){
console.info(this.name)
}
}
k.getName();//kName
j.getName();//jName
var m = {
name:"mName"
,kk:k
,jj:j
}
m.kk.getName();//kName
m.jj.getName();//jName
m.kk.getParentName(m)//mName

thisInObject

标签:UNC   on()   function   console   this   object   jna   parent   fun   

原文地址:https://www.cnblogs.com/pengchenggang/p/10094658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!