-1
var options = {
    properties: 'someValue'
};

var moved = {
    init:function() {
        console.log(properties) // get propeties from options object
    }
};

如何在移动对象中使用选项对象属性?

4

2 回答 2

2

该属性是通过其对象获得的:

console.log( options.properties );
于 2012-11-15T01:20:16.703 回答
1

您需要参考选项对象

var moved = {
    init:function() {
        console.log(options.properties) // get propeties from options object
    }
};
于 2012-11-15T01:20:23.677 回答