如果我只提到房产,我可以到达房产的对象吗?

时间:2013-05-18 04:57:06

标签: javascript object properties reference

我有一个变量中对象属性的引用,是否可以访问该属性所属的对象?

2 个答案:

答案 0 :(得分:2)

除非属性值本身包含对象的引用。

答案 1 :(得分:2)

var obj = {
    p1: 1,
    p2: function(){
        return this;
    },
    p3: obj,
    p4: function() {
        return obj;
    }
}

// v1 is now integer, we cannot get actual `obj` from this `v1`
var v1 = obj.p1;

// `v2()` returns `window` object (or current context object), 
// so if `obj` is created only in global context (or current 
// context which you're calling `v2()`), you can get reference to `obj`
var v2 = obj.p2;

// as @Ignacio mentioned, you can use `v3` as reference to `obj`
var v3 = obj.p3;

// `v4()` also reference to `obj`
var v4 = obj.p4;