我使用spring roo(gvnix)创建了一个简单的项目(创建用户)并在tomcat7中部署,并且在chrome和microsoft边缘浏览时它工作正常,但在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>
你能告诉我我错在哪里吗?
使用microsoft edge
使用ie(11)
答案 0 :(得分: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"/> -->
如果这可以解决问题,请告诉我