0

我正在将 Spring MVC 3.1.x 与 Tiles 2.2.2(使用 Roo 的引导项目)一起使用,并尝试使用如下图块模板创建视图:

<html   xmlns:jsp="http://java.sun.com/JSP/Page" 
    xmlns:c="http://java.sun.com/jsp/jstl/core" 
    xmlns:tiles="http://tiles.apache.org/tags-tiles" 
    xmlns:spring="http://www.springframework.org/tags" 
    xmlns:util="urn:jsptagdir:/WEB-INF/tags/util" >

<jsp:output doctype-root-element="HTML" doctype-system="about:legacy-compat" />
<jsp:directive.page contentType="text/html;charset=UTF-8" />
<jsp:directive.page pageEncoding="UTF-8" />
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=8" />    

    <util:load-scripts />

    <spring:message code="application_name" var="app_name" htmlEscape="false"/>
    <title><spring:message code="welcome_h3" arguments="${app_name}" /></title>
</head>
<body>
    <!--Comments -->
    <!--[if IE]>
        something
    <![endif]-->
    ...
    <tiles:insertAttribute name="menu" ignore="true" />
    ...
</body>
</html>

Tiles 属性运行良好,但注释和条件 CSS 均未呈现;它们只是不存在于输出代码中。

渲染这个“html 注释元素”代码的任何想法?

4

2 回答 2

2

解决方案:Jspx 文件和条件注释

总之,jsp文档中的注释被忽略了。解决方案是:

<jsp:text><![CDATA[<!--[if lte IE 9]>]]></jsp:text>
...
<jsp:text><![CDATA[<![endif]-->]]></jsp:text>
于 2012-06-13T07:39:52.540 回答
1

尝试使用jsp 注释<%-- 注释--%>。希望这对您有所帮助。干杯。

于 2012-06-12T11:34:24.577 回答