Javascript错误

时间:2014-03-26 11:09:28

标签: java jsp

我有下面提到的java脚本代码,但它显示与else令牌的语法错误,我不明白出了什么问题

<% if (isAliveMessage=="TIVOLI ALARM") {%>
<FONT COLOR="Red">
<p><b>Status of Alarm:<%= isAliveMessage  %></b></p>
</FONT>
<% } %>
<% else {%>
<p><b>Status of Alarm:<%= isAliveMessage %></b></p>
<% } %>

1 个答案:

答案 0 :(得分:-1)

虽然看到更多代码会很高兴,但我认为你正在使用像下划线这样的模板引擎,你可能在第5行有错误。应该是:

<% if (isAliveMessage=="TIVOLI ALARM") {%>
<FONT COLOR="Red">
<p><b>Status of Alarm:<%= isAliveMessage  %></b></p>
</FONT>
<% } else { %>
<p><b>Status of Alarm:<%= isAliveMessage %></b></p>
<% } %>

基本上你应该将 else 语句放在右括号的同一行。