浏览器兼容

2017-09-13  本文已影响0人  左冬的博客
什么是浏览器兼容问题

同一份代码,有的浏览器效果正常,有的不正常

为什么会有浏览器兼容问题
处理兼容问题的思路
渐进增强和优雅降级

处理兼容问题的手段

合适的框架
  1. Bootstrap (>=ie8)
  2. jQuery 1 (>=ie6), jQuery2 (>=ie9)
  3. Vue (>=ie9)
  4. ...
条件注释

条件注释(conditional comment)是于HTML源码中被IE有条件注释的语句。条件注释可被用来向IE提供及隐藏代码。

 <!--[if IE 6]>//如果是IE6,下面的<p>生效
    <p>You are using Internet Explorer 6.</p>
    <![endif]-->
    <!--[if !IE]><!-->
    <script>alert(1);</script>
    <!--<![endif]-->
    <!--[if IE 8]>
    <link href="ie8only.css" rel="stylesheet">
    <![endif]-->

使用了条件注释的页面在Windows Internet Explorer 9 中可以正常工作,但在 Internet Exploroer 10中无法正常工作。

CSS hack
  1. 属性前缀法(即内部Hack):例如IE6能识别下划线和星号,IE7能识别星号,但不能识别下划线,IE6 - IE10都认识"\9",但firefox前述三个都不认识
  2. 选择器法前缀(即选择器Hack)
  3. IE条件注释法(即HTML条件注释Hack):针对所有IE(注:IE10+已经不再支持条件注释): ,针对IE6及以下版本:。这类Hack不仅对CSS生效,对写在判断语句里面的所有代码都会生效
常见Hack写法
.box{
  color: red;
  _color: blue; /*ie6*/
  *color: pink; /*ie67*/
  color: yellow\9;  /*ie/edge 6-8*/
}
<!–-[if IE 7]>
<link rel="stylesheet" href="ie7.css" type="text/css" />
<![endif]–->
常见属性的兼容情况
常见兼容处理范例
.target{
  display: inline-block;
  *display: inline;
  *zoom: 1; //生成一个类似BFC的效果,可以添加宽高,相当于inline-block
}
常见兼容处理范例
.clearfix:after{
  content: '';
  display: block;
  clear: both;
}
.clearfix{
  *zoom: 1; /* 仅对ie67有效 */
}
常见兼容处理范例
<!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
    <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  <![endif]-->
<!DOCTYPE html>
<!--[if IEMobile 7 ]> <html dir="ltr" lang="en-US"class="no-js iem7"> <![endif]-->
<!--[if lt IE 7 ]> <html dir="ltr" lang="en-US" class="no-js ie6 oldie"> <![endif]-->
<!--[if IE 7 ]>    <html dir="ltr" lang="en-US" class="no-js ie7 oldie"> <![endif]-->
<!--[if IE 8 ]>    <html dir="ltr" lang="en-US" class="no-js ie8 oldie"> <![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html dir="ltr" lang="en-US" class="no-js"><!--<![endif]-->

需要用到的网站

上一篇下一篇

猜你喜欢

热点阅读