zoukankan      html  css  js  c++  java
  • 一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10

    一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10 在网站开发中不免因为各种兼容问题苦恼,针对兼容问题,其实IE给出了解决方案Google也给出了解决方案 百度也应用了这种方案去解决IE的兼容问题 百度源代码如下 <!Doctype...

    一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10

    在网站开发中不免因为各种兼容问题苦恼,针对兼容问题,其实IE给出了解决方案Google也给出了解决方案

    百度也应用了这种方案去解决IE的兼容问题

    百度源代码如下

    1. <!Doctype html>
    2. <htmlxmlns=http://www.w3.org/1999/xhtmlxmlns:bd=http://www.baidu.com/2010/xbdml>
    3. <head>
    4. <metahttp-equiv=Content-Typecontent=“text/html;charset=utf-8″>
    5. <metahttp-equiv=X-UA-Compatiblecontent=IE=EmulateIE7>
    6. <title>百度一下,你就知道 </title>
    7. <script>var wpo={start:newDate*1,pid:109,page:‘superpage’}</script>

    <meta http-equiv=X-UA-Compatible content=IE=EmulateIE7>

    可以打开百度,右键查看源码看下!我们可以看下文件头是否存在这样一行代码!

    这句话的意思是强制使用IE7模式来解析网页代码!

    然而同样的解决方案在一些大型的电子商务网站也很多见

    从源码中我们可以看到

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head><meta http-equiv="X-UA-Compatible" content="IE=8" />
    <title>Home page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="description" content="Online shopping for cool gadgets at the right price. Buy cheap computers, electronics, car accessories, cellphones, iPhone, apparels and home gadgets on, free shipping for all orders." />
    <meta name="keywords" content="cool gadgets, free shipping" />
    <meta name="robots" content="INDEX,FOLLOW" />

    在这里送上几种IE使用模式!

    1. <metahttp-equiv=“X-UA-Compatible”content=“IE=8″>

    2. Google Chrome Frame也可以让IE用上Chrome的引擎:

    1. <metahttp-equiv=“X-UA-Compatible”content=“chrome=1″/>

    3.强制IE8使用IE7模式来解析

    1. <metahttp-equiv=“X-UA-Compatible”content=“IE=EmulateIE7″><!– IE7 mode –>
    2. //或者
    3. <metahttp-equiv=“X-UA-Compatible”content=“IE=7″><!– IE7 mode –>

    4.强制IE8使用IE6或IE5模式来解析

    1. <metahttp-equiv=“X-UA-Compatible”content=“IE=6″><!– IE6 mode –>
    2. <metahttp-equiv=“X-UA-Compatible”content=“IE=5″><!– IE5 mode –>

    5.如果一个特定版本的IE支持所要求的兼容性模式多于一种,如:

    1. <metahttp-equiv=“X-UA-Compatible”content=“IE=5; IE=8″/>

    二.设定网站服务器以指定预设兼容性模式

    如果服务器是自己的话,可以在服务器上定义一个自订标头来为它们的网站预设一个特定的文件兼容性模式。这个特定的方法取决于你的网站服务器。

    录入,下列的 web.config文件使Microsoft Internet Information Services (IIS)能定义一个自订标头以自动使用IE7 mode来编译所有网页。

    另外还有一起其他的解决方案,例如google的

    ie7 – js中是一个JavaScript库(解决IE与W3C标准的冲突的JS库),使微软的Internet Explorer的行为像一个Web标准兼容的浏览器,支持更多的W3C标准,支持CSS2、CSS3选择器。它修复了许多的HTML和CSS问题,并使 得透明PNG在IE5、IE6下正确显示。

    使IE5,IE6兼容到IE7模式(推荐)

    1. <!–[if lt IE 7]>
    2. <script src=”http://ie7-js.googlecode.com/svn/version/2.0(beta)/IE7.js” type=”text/javascript”></script>
    3. <![endif]–>

    使IE5,IE6,IE7兼容到IE8模式

    1. <!–[if lt IE 8]>
    2. <script src=”http://ie7-js.googlecode.com/svn/version/2.0(beta)/IE8.js” type=”text/javascript”></script>
    3. <![endif]–>

    使IE5,IE6,IE7,IE8兼容到IE9模式

    1. <!–[if lt IE 9]>
    2. <script src=”http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js”></script>
    3. <![endif]–>

    解决PNG显示问题

    只需将透明png图片命名为*-trans.png

    需要注意的是:此方法对背景平铺(background-repeat)和背景(background-position)无法起到任何作用,默认会占满整个容器

  • 相关阅读:
    解释机器学习模型的一些方法(一)——数据可视化
    机器学习模型解释工具-Lime
    Hive SQL 语法学习与实践
    LeetCode 198. 打家劫舍(House Robber)LeetCode 213. 打家劫舍 II(House Robber II)
    LeetCode 148. 排序链表(Sort List)
    LeetCode 18. 四数之和(4Sum)
    LeetCode 12. 整数转罗马数字(Integer to Roman)
    LeetCode 31. 下一个排列(Next Permutation)
    LeetCode 168. Excel表列名称(Excel Sheet Column Title)
    论FPGA建模,与面向对象编程的相似性
  • 原文地址:https://www.cnblogs.com/lookyou/p/2528914.html
Copyright © 2011-2022 走看看