无法从另一个属性访问一个属性中的值

时间:2014-03-01 23:33:04

标签: javascript

以下是我的代码:

var Util = {
    parentElement: $('#parent'),
    windowWidth: this.parentElement.width,
    windowHeight: this.parentElement.height,

    init: function() {
        this.selfPlaneElement = this._loadImage('images/self.gif');
        this.enemyPlaneElement = this._loadImage('images/boss.gif');
        this.bulletElement = this._loadImage('images/bullet.jpg');
    },

    _loadImage: function(imgSrc) {
        var e = $('<img>', {
        src: imgSrc
    }).css({'position': 'absolute'});

        return e;
    }
}

但是当我执行代码时,我被告知:

  

未定义this.parentElement。

如何访问我给'parentElement'的属性值?

0 个答案:

没有答案