zoukankan      html  css  js  c++  java
  • 让IE6支持HTML5的标准方法

    <!–[if IE]>
    <script>
    /*! HTML5 Shiv vpre3.6 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
    Uncompressed source: https://github.com/aFarkas/html5shiv */
    (function (a, b) {
    function h(a, b) {
    var c = a.createElement("p"),
    d = a.getElementsByTagName("head")[0] || a.documentElement;
    return c.innerHTML = "x<style>" + b + "</style>",
    d.insertBefore(c.lastChild, d.firstChild)
    }
    function i() {
    var a = l.elements;
    returntypeof a == "string" ? a.split(" ") : a
    }
    function j(a) {
    var b = {},
    c = a.createElement,
    f = a.createDocumentFragment,
    g = f();
    a.createElement = function (a) {
    if (!l.shivMethods)
    return c(a);
    var f;
    return b[a] ? f = b[a].cloneNode() : e.test(a) ? f = (b[a] = c(a)).cloneNode() : f = c(a),
    f.canHaveChildren && !d.test(a) ? g.appendChild(f) : f
    },
    a.createDocumentFragment = Function("h,f", "return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&(" + i().join().replace(/\w+/g, function (a) {
    return c(a),
    g.createElement(a),
    'c("' + a + '")'
    }) + ");return n}")(l, g)
    }
    function k(a) {
    var b;
    return a.documentShived ? a : (l.shivCSS && !f && (b = !!h(a, "article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")), g || (b = !j(a)), b && (a.documentShived = b), a)
    }
    var c = a.html5 || {},
    d = /^<|^(?:button|form|map|select|textarea|object|iframe|option|optgroup)$/i,
    e = /^<|^(?:a|b|button|code|div|fieldset|form|h1|h2|h3|h4|h5|h6|i|iframe|img|input|label|li|link|ol|option|p|param|q|script|select|span|strong|style|table|tbody|td|textarea|tfoot|th|thead|tr|ul)$/i,
    f,
    g;
    (function () {
    var c = b.createElement("a");
    c.innerHTML = "<xyz></xyz>",
    f = "hidden"in c,
    f && typeof injectElementWithStyles == "function" && injectElementWithStyles("#modernizr{}", function (b) {
    b.hidden = !0,
    f = (a.getComputedStyle ? getComputedStyle(b, null) : b.currentStyle).display == "none"
    }),
    g = c.childNodes.length == 1 || function () {
    try {
    b.createElement("a")
    } catch (a) {
    return !0
    }
    var c = b.createDocumentFragment();
    returntypeof c.cloneNode == "undefined" || typeof c.createDocumentFragment == "undefined" || typeof c.createElement == "undefined"
    }
    ()
    })();
    var l = {
    elements : c.elements || "abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",
    shivCSS : c.shivCSS !== !1,
    shivMethods : c.shivMethods !== !1,
    type : "default",
    shivDocument : k
    };
    a.html5 = l,
    k(b)
    })(this, document)
    </script>
    <![endif]–>

     

    上面是完整的代码,把代码全部放置到/head标签里面才能够起作用,因为他要在网页显示之前就判读是否是IE并且载入代码,上面的代码已经包含一整套的浏览器判断了,你只用复制即可。

     

    <!–[if IE]>
    <script src=”http://html5shiv.googlecode.com/svn/trunk/html5.js”></script>
    <![endif]–>

     

    上面这段是托管的JS代码,达到的效果和全代码的是一样的,但是速度更快,因为是托管的,稳定性就受到托管的影响了,你想要用哪一款呢?这个就看你的选择了。

  • 相关阅读:
    【Linux】ubuntu各文件夹简介
    【Linux】 ubuntu 12.04 iNode Client找不到库libjpeg和libtiff的解决方法
    【Coding】ant 的 javac标签 (归纳)
    【Coding】Ant脚本命令
    【Linux】Ubuntu使用技巧
    【Linux】ubuntu下词典软件Goldendict介绍(可屏幕取词)和StarDict(星际译王)的安装
    【Coding】Ubuntu/环境变量:修改/etc/environment 导致开机不能登录!
    备用访问映射
    开发Silverlight类型的WebPart部署到Sharepoint2010上(转)
    (转)通过Internet访问 SharePoint
  • 原文地址:https://www.cnblogs.com/leejersey/p/2588515.html
Copyright © 2011-2022 走看看