JSP解析PrototypeJS模板标记

时间:2012-12-05 06:20:46

标签: jsp prototypejs jsp-tags

我在JSP文件上使用prototypejs模板。 但是jsp文件试图解析prototypejs模板的#{}标签,因此它会中断。

如何让jsp不解析它们。换句话说,我怎样才能逃脱这些标签?

感谢。

1 个答案:

答案 0 :(得分:0)

  1. 使用\var template = new Template('<a href="\#{href}" title="\#{title}">\#{name}</a>');

  2. 逃脱
  3. 将其编码为实体:var template = new Template('<a href="&#35;{href}" title="&#35;{title}">&#35;{name}</a>');

  4. 将其移至JavaScript文件。

  5. 将其移至Java代码并使用EL ${}或JSTL <c:out />或Stuts <bean:write />

  6. 在JSP上编写