问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

Bootstrap怎么兼容ie呢?

发布网友 发布时间:2022-04-29 06:11

我来回答

2个回答

懂视网 时间:2022-04-20 01:14

Bootstrap 来自 Twitter,是目前最受欢迎的前端框架。Bootstrap 是基于 HTML、CSS、JavaScript的,它简洁灵活。开发过程中,我们只需通过给DOM元素添加相应的class即可调用,使得 Web 开发更加快捷。

bootstrap解决浏览器兼容性:在HTML文件<head></head>标签底部添加代码引入html5shiv.min.js和respond.min.js这两个文件。

具体实现方法:

1、移动设备支持情况

1.jpg2、PC端支持情况

2.jpg注:Windows 支持 IE 8-11。

IE8是被支持的。然而,很多 CSS3 属性和 HTML5 元素是不被支持的。例如,Bootstrap 的响应式布局是通过CSS3的媒体查询(Media Query)功能实现的,根据不同的分辨率来匹配不同的样式,IE8浏览器并不支持这一优秀的CSS3特性。Bootstrap在开发文档中已经明确指出, IE8 需要 Respond.js 配合才能实现对媒体查询(media query)的支持。按照官方文档,在HTML文件<head></head>标签底部添加了如下的代码:

<!--[if lt IE 9]>
  <script src="https://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
 <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.js"></script>
<![endif]-->

注:其中 html5shiv.min.js 文件是让不(完全)支持html5的浏览器支持 html5 标签;respond.js 文件是让IE8实现对媒体查询(media query)的支持。

但是,在IE8浏览器中打开页面发现,兼容性问题并没有得到解决,通过查阅相关资料,总结几点注意事项(效果实现的关键):

本地调试需要Web Server(如IIS、Apache,Nginx),单纯地本地打开文件不能看到兼容效果;

如果你发现已经引用了 respond.js 和 Bootstrap,仍无效果,请查看你的Bootstrap是否使用了CDN文件;

Bootstrap3 需要Html5文档声明;

Jquery 版本需要在2.0以下。

模板代码如下:

<!DOCTYPE html>
<html lang="en">
 
<head>
 <!-- 编码格式 -->
 <meta charset="UTF-8">
 <title></title>
 <!-- 作者 -->
 <meta name="author" content="author">
 <!-- 网页描述 -->
 <meta name="description" content="hello">
 <!-- 关键字使用","分隔 -->
 <meta name="keywords" content="a,b,c">
 <!-- 禁止浏览器从本地机的缓存中调阅页面内容 -->
 <meta http-equiv="Pragma" content="no-cache">
 <!-- 用来防止别人在框架里调用你的页面 -->
 <meta http-equiv="Window-target" content="_top">
 <!-- content的参数有all,none,index,noindex,follow,nofollow,默认是all -->
 <meta name="robots" content="none">
 <!-- 收藏图标 -->
 <link rel="Shortcut Icon" href="favicon.ico" rel="external nofollow" >
 <!-- 网页不会被缓存 -->
 <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
 <!-- 解决部分兼容性问题,如果安装了GCF,则使用GCF来渲染页面,如果未安装GCF,则使用最高版本的IE内核进行渲染。 -->
 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 <!-- 页面按原比例显示 -->
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="plugin/bootstrap-3.3.0/css/bootstrap.min.css" rel="external nofollow" >
 <!--[if lt IE 9]>
 <script src="https://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
 <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.js"></script>
 <![endif]-->
</head>
 
<body>
 
 <script src="plugin/jquery/jquery-1.11.2.min.js"></script>
</body>
 
</html>

推荐:bootstrap入门教程

热心网友 时间:2022-04-19 22:22

  Bootstrap的目标是在最新的桌面和移动浏览器上有最佳的表现,也就是说,在较老旧的浏览器上可能会导致某些组件表现出的样式有些不同,但是功能是完整的。
  bootstrap3支持的浏览器:
  Chrome (Mac、Windows、iOS和Android)
  Safari (只支持Mac和iOS版,Windows版已经基本死掉了)
  Firefox (Mac、Windows)
  Internet Explorer
  Opera (Mac、Windows)
  Bootstrap在Chromium、Linux版Chrome、Linux版Firefox和Internet Explorer 7上的表现也是很不错的,只是官方并不提供支持。
  Internet Explorer 8 和 9的很多CSS3属性和HTML5元素,例如圆角矩形和投影,不支持。
  Internet Explorer 6 几乎不支持,nav, pagination 等在ie6上表现都特别差。
  使用bootstrap2的bsie插件 http://www.bootcss.com/p/bsie/ ,提取插件里的 bootstrap-ie6.css 和ie.css,在页面的head里bootstrap.css之下加入如下代码:
  <!--[if lte IE 6]>
  <link rel="stylesheet" type="text/css" href="/css/bootstrap-ie6.css?1">
  <![endif]-->
  <!--[if lte IE 7]>
  <link rel="stylesheet" type="text/css" href="/css/ie.css">
  <![endif]-->
  禁用响应式布局:
  <link href="/css/non-responsive.css" rel="stylesheet" media="screen">
  html里的css代码:
  <style type="text/css">
  body {
  padding-top: 60px;
  padding-bottom: 40px;
  }
  /* 禁用响应式布局:重新设置container的宽度。如果没有后面三行的代码,在IE6环境下navbar-top会显示为940px宽度 */
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
  width:1140px;
  }
  </style>
  打开 bootstrap-ie6.css文件,将文件里的pager替换为pagination,用于支持bootstrap3的分页组件。并在底部加入如下代码,代码作用请看注释:
  /* 栅栏系统,溢出的问题 */
  .col-xs-1 {
  width: 5.7%;
  }
  .col-xs-2 {
  width: 13.96%;
  }
  .col-xs-3 {
  width: 22.2%;
  }
  .col-xs-4 {
  width: 30.5%;
  }
  .col-xs-5 {
  width: 38.8%;
  }
  .col-xs-6 {
  width: 47%;
  }
  .col-xs-7 {
  width: 55.2%;
  }
  .col-xs-8 {
  width: 63.5%;
  }
  .col-xs-9 {
  width: 72%;
  }
  .col-xs-10 {
  width: 80%;
  }
  .col-xs-11 {
  width: 88.3%;
  }
  .col-xs-12 {
  width: 100%;
  }
  /* 修复ie6下分页组件css解析失败的问题 */
  .pagination .active a,
  .pagination .active span {
  z-index: 2;
  color: #ffffff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
  }
  /* 修复ie6下input样式被重写的问题*/
  .form-control{
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  }
  在html页body之上添加如下代码:
  <!--[if lte IE 6]>
  <script type="text/javascript" src="/js/bootstrap-ie.js"></script>
  <![endif]-->
  <script type="text/javascript">
  (function ($) {
  $(document).ready(function() {
  if ($.isFunction($.bootstrapIE6)) $.bootstrapIE6($(document));
  });
  })(jQuery);
  </script>
  html整个头部文件如下:
  <!DOCTYPE HTML>
  <html>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <link href="/css/bootstrap.min.css" rel="stylesheet" media="screen">
  <!-- Bootstrap theme -->
  <link href="/css/bootstrap-theme.min.css" rel="stylesheet">
  <!--[if lte IE 6]>
  <link rel="stylesheet" type="text/css" href="/css/bootstrap-ie6.css?1">
  <![endif]-->
  <!--[if lte IE 7]>
  <link rel="stylesheet" type="text/css" href="/css/ie.css">
  <![endif]-->
  <link href="/css/non-responsive.css" rel="stylesheet" media="screen">
  <link href="/css/showLoading.css" rel="stylesheet" media="screen">
  <script type="text/javascript" src="/js/jquery-1.10.2.min.js"></script>
  <script type="text/javascript" src="/js/bootstrap.min.js"></script>
  <!-- HTML5 Shim and Respond.js 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="/js/html5shiv.js"></script>
  <script src="/js/respond.min.js"></script>
  <![endif]-->
  <style type="text/css">
  body {
  padding-top: 60px;
  padding-bottom: 40px;
  }
  /* 禁用响应式布局:重新设置container的宽度。如果没有后面三行的代码,在IE6环境下navbar-top会显示为940px宽度 */
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
  width:1140px;
  }
  </style>
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
Linux系统安装FTP服务器 Linux系统的网络文件共享 建筑的七盏明灯的内容简介 面向对象设计七大原则 简单说 交互设计七大定律 交互设计的“根”——七大定律 交互设计原则和理论2——七大定律 七大设计原则 附近的加油站有哪些 附近的加油站有哪些地方 祝考教师资格证的祝福语 氧乙炔焊炬 能焊接那几种金属呢? 气焊时需要哪些设备和工具? 关于焊机的几个问题 轻微伤鉴定标准是什么? 氧焊枪的使用方法图片 如何分轻微伤,伤到什么程度算轻微伤 轻微伤鉴定标准是怎么样的? 氩弧焊枪型号 轻微伤评判标准 WP-26F焊枪分几种型号 我用的是氧气液化气G01-30割枪,割枪有专用的焊枪嘴吗 虎皮鹦鹉鸟怎么分辨公母? 你好,我们想焊接一批刨刀刀头,使用的是氧气和丙烷,现在要提焊*,请问用哪种规格型号的焊*好啊? 虎皮鹦鹉如何分辨公母 虎皮鹦鹉公母 .请大家帮我鉴别一下 谢谢 轻微伤标准是什么意思 如何分辨虎皮鹦鹉的公母? 虎皮鹦鹉怎么分辨雌雄 公司让采购一台打印机,20个人的部门选择佳能激光打印机LBP613Cdw怎么样? 女儿考取了教师证怎样写祝福语? bootstrap 怎样兼容 ie 闺蜜教师资格证考过了说什么祝福的话 女儿考取了教师证怎样写祝福语 bootstrap怎么实现兼容ie8浏览器,求大神解答 人家要考教师资格证我应该怎么祝福她 bootstrap validator 表单验证怎么兼容IE浏览器 考教师资格证的祝福语 如何让ie兼容bootstrap的container 妹妹考试通过了教师资格证怎样写祝福语 如何解决bootstrap与ie不兼容问题 bootstrap和ie11怎么兼容? 怎么让bootstrap支持ie8 bootstrap3兼容ie8吗 bootstrap table兼容ie8吗 bootstrap怎么实现兼容ie8浏览器,求大神解答!! bootstrap3 能成功兼容 IE7 及更低版本么 怎么用bootstrap中的时间插件在ie上使用 bootstrap哪个版本支持ie8 梦见摩托车停下钥匙拧段了,昨晚梦见自己骑摩托车停下后拔钥匙时段了。但拿手中时又是个破纽扣,发愁一会