如何解决上的CSS闭合编译器错误({浮动:“左”})[重复](how to fix closure

2019-07-31 19:46发布

可能重复:
谷歌关闭编译器解析错误:无效的属性ID为css({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' })

如何解决呢? 此代码是在张贴在计算器答案奥列格的jqGrid createContexMenuFromNavigatorButtons方法使用。

Answer 1:

float很可能被识别为保留字( 虽然它不是 ,它是ES3 ),所以它应该是安全的使用

css({ "float": "left"})


文章来源: how to fix closure compiler error on css({ float: 'left' }) [duplicate]