我有以下JSF 2.1.20
代码
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"><!--<![endif]-->
呈现以下代码(从Google Chrome检查员复制)
<!DOCTYPE html><!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--><!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]--><!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]--><!--[if gt IE 8]><!-->
<html class="js"><!--<![endif]-->
不知道为什么xhtml减速没有被解决但是被渲染。但是,它在chrome,Firefox和IE 10上运行良好。
在IE 8的检查员身上:
<!-- DOCTYPE html -->
<html class="js">
<head>
<style>CSS Stylesheet</style>
<title>صفحة خطأ</title>
<body class="bg-color white rtl" lang="ar">
Text - <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--><!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--><!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!-- [if gt IE 8]><! -->
Text - Empty Text Node
<!-- <![endif] -->
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content=" IE=edge,chrome=1"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link href="/StaticFilesFiles/favicon.ico" rel="shortcut icon"/>
<link href="/StaticFiles/css/styles.min.css" rel="stylesheet" type="text/css"/>
Text - <!--[if IE 8]> <link type="text/css" rel="stylesheet" href="/StaticFiles/css/ie8_notification.css"/> <![endif]-->
<script src="/StaticFiles/js/modernizr.min.js" type="text/javascript"></script>
Text - Empty Text Node
<!-- some comment -->
查看IE8的页面来源
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--><!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]--><!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]--><!--[if gt IE 8]><!--><html class="no-js" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!--<![endif]--><head>
<title>صفحة خطأ</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content=" IE=edge,chrome=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="shortcut icon" href="/StaticFilesFiles/favicon.ico" />
<link type="text/css" rel="stylesheet" href="/StaticFiles/css/styles.min.css" />
<!--[if IE 8]>
<link type="text/css" rel="stylesheet" href="/StaticFiles/css/ie8_notification.css"/>
<![endif]-->
使用facelets跳过评论上下文参数
<context-param>
<param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
<param-value>true</param-value>
</context-param>
完全删除条件评论