jsp页面的html代码显示不出来,提示Uncaught SyntaxError: Unexpected token <

Posted .net

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp页面的html代码显示不出来,提示Uncaught SyntaxError: Unexpected token <相关的知识,希望对你有一定的参考价值。

jsp页面的html代码显示不出来,提示Uncaught SyntaxError: Unexpected token <

 

<input type="hidden" name="flowBranchId" value="${flowBranch.flowUserId}"/>

 

上面的flowUserId,在传过来的flowBranch中不存在。

改为正确的:

<input type="hidden" name="flowBranchId" value="${flowBranch.flowBranchId}"/>

就可以了。

以上是关于jsp页面的html代码显示不出来,提示Uncaught SyntaxError: Unexpected token <的主要内容,如果未能解决你的问题,请参考以下文章