我嘗試通過我的模板中的meta標籤禁止Internet Explorer。如何禁用Internet Explorer?
template.xhtml
:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<f:view locale="de_DE">
<h:head>
<f:facet name="first">
<h:outputText
value="<!--[if IE]>
<h1>No IE support.</h1>
<![endif]-->"
escape="false" />
</f:facet>
...
以這種方式,無法正常工作。我怎樣才能實現它?
當你說「這行不通」時,當你試圖在IE8中打開這個頁面時會發生什麼? – bouteillebleu
jsf呈現的頁面顯示。相反,我只想讓文字「無IE支持」。 –
生成的HTML是否包含條件註釋? –