0

我正在尝试为我的应用程序使用 dojo 自定义构建并为其设置标准配置文件。当我运行 build.sh 我得到这个:

(...)
release:      ../../release/dojo/dojox/layout/resources/FloatingPane.html
release:  Optimizing (shrinksafe) file: ../../release/dojo/dojo/k11CustomDojo.js
js: line 42106: invalid property id

js:         this.loadingPane = dojo.create("div", {class:"chart-preloader"}, this.containerNode, "last");
js: .........................................^

好像是在抱怨dojo.create()来电!?有人可以指出我正确的方向吗?

4

1 回答 1

6

class是 javascript 中的保留字。

class引号

this.loadingPane = 
  dojo.create("div", {"class":"chart-preloader"}, this.containerNode, "last");

http://jsfiddle.net/cswing/twbfs/

于 2012-11-02T11:40:06.103 回答