Eclipse 中出现语法错误! char 位于 javascript 脚本内的 jstl 标记中
我有这个 .jsp 文件:
<script language="javascript">
<c:if test="1!=2">
</c:if>
</script>
并且我在 Eclipse WTP (STS) 中遇到语法错误,如果我有这个:
则没有语法错误。
在此文件中位于 之外即可。
I have this .jsp file:
<script language="javascript">
<c:if test="1!=2">
</c:if>
</script>
and I got Syntax Error in Eclipse WTP (STS), and if I have this: <c:if test="1==2">
there is no Syntax Error.<c:if test="1!=2">
in this file outside <script>..</script>
is ok.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Eclipse 经常在没有语法错误的情况下发出语法错误信号,因为它无法正确解析 JavaScript(或其他组合)内的 HTML 中的 JSTL。
通过将代码部署到服务器上并运行来测试代码。如果它运行,那么您遇到了 Eclipse 错误。
Eclipse often signal syntax errors when there is none, because it fails parsing JSTL inside HTML inside JavaScript (or other combinations) correctly.
Test your code by deploying it on your server and running it. If it runs, then you've encountered an Eclipse bug.