0

可能重复:
Google Closure Compiler 解析错误:无效的属性 IDcss({float:'left'})

我尝试使用闭包编译器

http://closure-compiler.appspot.com/home

编译代码

// ==ClosureCompiler==
// @output_file_name default.js
// @compilation_level ADVANCED_OPTIMIZATIONS
// ==/ClosureCompiler==

css({ float: 'left' })

但有错误

JSC_PARSE_ERROR: Parse error. invalid property id at line 1 character 6
css({ float: 'left' })

如何解决?此代码用于在 stackoverflow 答案中发布的 Oleg jqGrid createContexMenuFromNavigatorButtons 方法。

4

1 回答 1

3

float很可能会被识别为保留字(虽然不是,但它在 ES3 中),因此使用起来应该是安全的

css({ "float": "left"})
于 2012-09-23T14:34:33.697 回答