1. 程式人生 > >解決IE6/7/8相容HTML5,並使用標準模式

解決IE6/7/8相容HTML5,並使用標準模式

1.首先修改doctype

<!DOCTYPE HTML >

意思是使用html5版本

2.修改mata標籤

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="X-UA-Compatible" content = "IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, maximum-scale=1.0, initial-scale=1.0">
3.接著針對IE做處理
   <!--[if lte IE 9]>
       <script src="<%=basePath%>js/html5.js" type="text/javascript"></script>
   <![endif]-->
這裡的這個html5.js可以自行再網上下載,網上很多!