Eclipse 中出现语法错误! char 位于 javascript 脚本内的 jstl 标记中

发布于 2024-10-17 16:02:22 字数 327 浏览 3 评论 0原文

我有这个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

禾厶谷欠 2024-10-24 16:02:22

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文