消除Eclipse对javascript校验的error误报及warning符号

  • 步骤:
    • 1.Eclipse设置:Windows->Preferences->Validation,去掉Client-side JavaScript Validator的校验
    • 2.打开你的project的.project文件,删除一下内容:
      • <buildCommand>
            <name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
            <arguments>
            </arguments>
        </buildCommand>
      • <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
    • 删除原来的js文件,重新copy进去,就没有error与warning了

你可能感兴趣的:(JavaScript,eclipse,去掉warning)