0

我使用spring roo(gvnix)创建了一个简单的项目(创建用户)并部署在tomcat7中,在chrome和microsoft edge中浏览时它工作正常,但在IE(11)中浏览时。顶部固定菜单不显示。下面是我的 index.jspx 代码。

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<div xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:spring="http://www.springframework.org/tags" xmlns:util="urn:jsptagdir:/WEB-INF/tags/jquery/util" version="2.0">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <jsp:output omit-xml-declaration="yes"/>
    <spring:message code="application_name" htmlEscape="false" var="app_name"/>
    <spring:message arguments="${app_name}" code="welcome_titlepane" htmlEscape="false" var="title"/>

        <div class="jumbotron">
            <h1><spring:message arguments="${app_name}" code="welcome_h3"/></h1>
            <p><spring:message code="welcome_text"/></p>
        </div>

</div>

你能告诉我我错在哪里吗?

使用微软边缘

使用微软边缘

使用即(11)

使用即(11)

4

1 回答 1

1

我有同样的问题并解决了。

WEB-INF/layouts/default.jspx

<jsp:output doctype-root-element="html" doctype-system="about:legacy-compat"/>

代替

<jsp:output doctype-root-element="HTML" doctype-system="about:legacy-compat"/>

并评论:

<!-- <meta content="IE=8" http-equiv="X-UA-Compatible"/>  --> 

让我知道这是否可以解决问题

于 2016-03-09T00:18:11.477 回答