首页 > 编程 > HTML > 正文

HTML5新标签兼容——> 的两种方法

2024-08-26 00:21:00
字体:
来源:转载
供稿:网友

第一种方法:(使用html5shiv)

<!--[if lt IE9]>    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> 

由于国内google的服务器访问卡,建议调用国内的cdn

<!--[if lt IE 9]>  <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script><![endif]--> 

下载html5shiv

https://github.com/aFarkas/html5shiv

本人博客下载地址:https://i.cnblogs.com/Files.aspx

第二种方法:(需要映入JQuery)

<!--<if lt IE 9>  <script>    (function(){      if(!/*@cc_on!@*/0){        return;      }      var arr= "abbr, article, audio, canvas, datalist, dialog, figure, footer, header, nav, hgroup, section, video, progress, aside,svg".split(",");      var i = arr.length;      while(i--){        document.createElement(arr[i]);      }    })()  </script><!endif-->

总结

以上所述是小编给大家介绍的HTML5新标签兼容——> <!--<if lt IE 9><!endif--> 的两种方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VeVb武林网网站的支持!


注:相关教程知识阅读请移步到HTML教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表