H5支持所有浏览器-博客园老牛大讲堂
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了H5支持所有浏览器-博客园老牛大讲堂相关的知识,希望对你有一定的参考价值。
只需要使用下面的模板就好了。
提醒:其中的注释一定不要删除。
1 <!DOCTYPE html> 2 <html lang="zh-CN"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 6 <!-- IE=edge告诉IE使用最新的引擎渲染网页,chrome=1则可以激活Chrome Frame --> 7 <meta name="viewport" content="width=device-width, initial-scale=1"> 8 <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! --> 9 <title>Bootstrap模板样式</title> 10 11 <!-- 引入Bootstrap --> 12 <link href="css/bootstrap.min.css" rel="stylesheet"> 13 <!-- 引入HTML5框架和respond.js支持IE8和IE9 ,IE 8 需要 Respond.js 配合才能实现对媒体查询的支持。 Respond.js 不能再路径 file:// 下运行--> 14 <!-- [if lt IE 9]表示在IE9以下的浏览器生效--> 15 <!--[if lt IE 9]> 16 <script src="http://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> 17 <script src="http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> 18 <![endif]--> 19 </head> 20 <body> 21 <h1>你好,Body!</h1> 22 23 <!--在底部引用jquery插件用于实现bootstrap动态效果 --> 24 <script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> 25 <!-- 引入bootsrtap脚本 --> 26 <script src="js/bootstrap.min.js"></script> 27 </body> 28 </html>
以上是关于H5支持所有浏览器-博客园老牛大讲堂的主要内容,如果未能解决你的问题,请参考以下文章