Bootstrap---起步(易)------(了解)
? ? ? ? 1.lang
? ? ? ? ? ? ? ? 為HTML標簽指定lang屬性
? ? ? ? ? ? ? ? 作用:指定當前文檔的基礎(chǔ)語言(翻譯甚脉,語音...)
? ? ? ? ? ? ? ? 語法:<html lang="zh-cn"> ??eg:jp en
? ? ? ? 2.<meta http-equiv = "X-UA-Compatible" content="IE=edge">
? ??????????????作用:指定 跨IE瀏覽器兼容性
? ? ? ? ? ? ? ? X-UA-Compatible:cross userAgent compatible
? ??????????????指定使用那個IE的內(nèi)核進行頁面的渲染(IE=6 指定使用IE6內(nèi)核渲染頁面 ? / ? IE=7 ? ......ie7 ? / ? ..8 ? / ? ..9 ? ......)
? ? ? ? ? ????? IE=edge ??指定當前瀏覽器中支持的最高版本的內(nèi)容渲染頁面
? ? ? ? 3.<meta name="viewport" content=""> ? 視口必須
? ? ? ? 4.<link href="css/bootstrap.min.css" rel="stylesheet"> ?引bootstrap.css文件 ?
? ? ? ? 5.引入兩個 ?兼容性 ? JS文件? ? ? <script"https://cdn.bootstript.com/html5shiv/3.7.3/htmlhtml5shiv.min.js"></script>
? ? ? ? ? ? ? ? ?第三方JS怎诫,自調(diào)函數(shù)葬荷,用于讓老IE(8以下)支持html5標記
? ? ? ? ? ? ? ? ?<script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
? ? ? ? ? ? ? ? ?第三方JS五慈,讓老IE(8以下)支持CSS3媒體查詢技術(shù)
? ? ? ? ? ? ? ? ?<script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script>
? ? ? ? ? ? ? ? ?<script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
? ?????6.引入2個JS插件 ? 作用:元素的動作
? ? ? ????????? <script src="jquery.min.js"></script>
? ? ? ????????? <script src="bootstrap.min.js"></script>
? ? ? ? ?*:一般放在頁面的最底層</body>上面
? ? ? 7.引入bootlint.js文件
? ? ? ? ? ? ????作用:用于檢查頁面是否符合bootstarp規(guī)范
· ? ? ? ? ? ?????<1>引入bootlink.js
? ? ? ? ? ? ? ? ? ????? <script src="bootlink.js"></script>
? ? ? ? ? ? ? ? ? <2>編寫檢查代碼
? ? ? ? ? ? ? ? ? ????? <script>bootlink.showlintReportForCurrentDocument</script>