码迷,mamicode.com
首页 > 其他好文 > 详细

bootstrap 不兼容ie8 的问题

时间:2016-11-30 14:01:48      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:charset   content   文件   使用   query   360浏览器   src   har   res   

官方推荐的脚手架中,其实已经包含着解决方案:html5shiv.min.js 、Respond.min.js

但由于respond.js  使用 file:// 协议,IE8 是无法调起本地文件的  只在本地预览是看不出效果的。只能部署在web服务器上才能见效。比如apache/iis等。推荐使用360浏览器兼容模式来测试

<!DOCTYPE html>
<html lang="zh-cn">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap 101 Template</title>

    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn‘t work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="http://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <h1>你好,世界!</h1>

    <!-- jQuery (necessary for Bootstrap‘s JavaScript plugins) -->
    <script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

 

bootstrap 不兼容ie8 的问题

标签:charset   content   文件   使用   query   360浏览器   src   har   res   

原文地址:http://www.cnblogs.com/CyLee/p/6117070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!