0

我有以下 javascript

var helloworld == cc.layer.extend({
    ctor : function() { this._super(); }
    init : function() { this._super();  ........}
    onmix : function() { this._super(); this.layer.addChild(); }
});

我得到的错误是这this._super()onmix功能上不知道,但其他地方this._super()都很好。如果我不放在this._super()里面,onmix那么它就不会知道this.layer对象。那么我该如何解决呢?

谢谢。

4

1 回答 1

0
var helloworld == <...>

不是有效的 JS 语法。我认为您的意思只是'='。

于 2012-11-21T22:36:29.650 回答