成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

HTML5新特性總結(jié)

2021-05-31    分類: 網(wǎng)站建設(shè)

HTML5屬于上一代HTML的新迭代語言,設(shè)計HTML5最主要的目的是為了在移動設(shè)備上支持多媒體?。?!

例如: video 標簽和 audio 及 canvas 標記

新特性:

 1. 取消了過時的顯示效果標記  
等...
 2. 新語義標簽的引入  
 3. 新表單元素引入
 4. canvas標簽(圖形設(shè)計)
 5. 本地數(shù)據(jù)庫(本地存儲)
 6. 一些API
好處:跨平臺

例如:比如你開發(fā)了一款HTML5的游戲,你可以很輕易地移植到UC的開放平臺、Opera的游戲中心、Facebook應(yīng)用平臺,甚至可以通過封裝的技術(shù)發(fā)放到App Store或Google Play上,所以它的跨平臺性非常強大,這也是大多數(shù)人對HTML5有興趣的主要原因。
缺點:

pc端瀏覽器支持不是特別友好,造成用戶體驗不佳(隨著移動端的發(fā)展不斷擴大和win10(ie10)的大量推廣,這一缺點將被無限縮小)
HTML5新語義標簽
HTML5新標簽的數(shù)量在25個左右具體也沒有找到詳細的資料來查看(每個網(wǎng)站顯示的數(shù)量都不一樣)
雖然新增的標簽很多但是實際上用到的應(yīng)該只有十個左右MDN上有一句話“HTML 使用“標記”來注明文本、圖片和其他內(nèi)容,以便于在 Web 瀏覽器中顯示。HTML 標記包含一些特殊“元素”如 ,,<body>,<header>,<footer>,<article>,<section>,<p>,<div>,<span>,<img> 等等?!?這其中大部分有HTML5以前的標簽也有HTML5的而這些剛好就是我們常用的標簽,不常用的也許不必太過了解布局DIV也可以不是么? </div><div> 另外推薦大家在使用新語義標簽的時候盡量每個獨立的頁面只使用一個標簽作為包裹,語義化的作用就是seo(具體可百度),就是讓搜索引擎知道網(wǎng)上到底有些什么,如header 、main、footer標簽等等,當然你也可以寫100個! </div><div> 以下總結(jié)出HTML5常用的標簽: </div><div> “header” “nav” “main”“article” “address”“section”“aside” “footer” </div><div> 如果忘記了這些標簽的意思可以訪問 MDN、W3C、或者CSND,當然博客園上搜搜可能會更快 </div><div> 以下為菜鳥教程對html5新標簽的注解 http://www.runoob.com/html/html5-new-element.html </div><div> HTML5的重點標簽之video和audio </div><div> <video></video> 視頻 </div><div> 屬性:controls 顯示控制欄 </div><div> 屬性:autoplay 自動播放 </div><div> 屬性:loop 設(shè)置循環(huán)播放 </div><div> <audio></audio> 音頻 </div><div> 屬性:controls 顯示控制欄 </div><div> 屬性:autoplay 自動播放 </div><div> 屬性:loop 設(shè)置循環(huán)播放 </div><div> video標簽支持的格式 http://www.w3school.com.cn/html5/html_5_video.asp </div><div> 多媒體標簽在網(wǎng)頁中的兼容效果方式(每個瀏覽器支持的情況不同所以需要做兼容性處理)(以下source屬性只會生效一個 即 if = true 之后 就不執(zhí)行了) </div><div> <video> </div><div> <source src="code/多媒體標簽/trailer.mp4"> </div><div> <source src="trailer.ogg"> </div><div> <source src="trailer.WebM"> </div><div> </video> </div><div> HTML5中的智能表單控件  </div><div> <input type="email"> </div><div> type值 ={ </div><div> email: 輸入合法的郵箱地址 </div><div> url: 輸入合法的網(wǎng)址 </div><div> number: 只能輸入數(shù)字 </div><div> range: 滑塊 </div><div> color: 拾色器 </div><div> date: 顯示日期 </div><div> month: 顯示月份 </div><div> week : 顯示第幾周 </div><div> time: 顯示時間 </div><div> } </div><div> (智能表單,會自動對輸入的內(nèi)容做基本校驗,內(nèi)容不符合基本校驗則拒絕提交請求 </div><div> 表單屬性 </div><div> ◆form屬性: </div><div> autocomplete=on | off 自動完成 </div><div> novalidate=true | false 是否關(guān)閉校驗 </div><div> ◆ input屬性: </div><div> autofocus : 自動獲取焦點 </div><div> <input type="text" list="abc"/> </div><div>     <datalist id="abc"> </div><div>     <option value="123">12312</option> </div><div>     <option value="123">12312</option> </div><div>     <option value="123">12312</option> </div><div>     <option value="123">12312</option> </div><div> </datalist> </div><br /><div> multiple: 實現(xiàn)多選效果 </div><div> placeholder : 占位符  (提示信息) </div><div> required:必填項     </div><div> HTML5中新的一些API </div><div> 以前獲取節(jié)點通過 </div><div> document.getElementById("ID名稱")這些還有className,name,tagname等等方式獲取返回當前節(jié)點  </div><div> H5新增的節(jié)點獲取方法只有兩個 </div><div> document.querySelector("選擇器"); 返回節(jié)點 </div><div> document.querySelectorAll("選擇器"); 返回數(shù)組 </div><div> 可以好的代替以前或者節(jié)點的方式,如果無需兼容ie10以下的話 </div><div> H5中對class的操作 </div><div> classList.add("類名")  </div><div> 添加class類名 不返回任何值 如果你把它賦值給一個變量 得到結(jié)果是undefined </div><div> classList.remove("類名"); 刪除 </div><div> classList.contains("類名");  </div><div> 檢查has className 是否存在返回布爾值 即true and false </div><div> classList.toggle("active");  </div><div> 查詢active 是否存在,存在就刪除,不存在就添加 ,省去了if判斷!返回布爾值如果執(zhí)行多條 即 true false true false. </div><div> 自定義屬性 (小案例分析體驗自定義屬性) data-自定義屬性名 </div><div> 獲取自定義屬性 Dom.dataset 返回的是一個對象 </div><div> Dom.dataset.屬性名 或者 Dom.dataset[屬性名]  </div><div> 注:屬性名無需加data如自定義屬性名 = data-canvas 那么獲取的時候 直接dataset.canvas即可 設(shè)置同理 </div><div> 設(shè)置自定義屬性 </div><div> Dom.dataset.自定義屬性名=值 或者 Dom.dataset[自定義屬性名]=值; </div><div> 文件讀取 FileReader </div><div> FileReader 接口有3個用來讀取文件方法返回結(jié)果在result中 </div><div> readAsBinaryString ---將文件讀取為二進制編碼 </div><div> readAsText ---將文件讀取為文本 </div><div> readAsDataURL ---將文件讀取為DataURL </div><div> FileReader 提供的事件模型 </div><div> onabort 中斷時觸發(fā) </div><div> onerror 出錯時觸發(fā) </div><div> onload 文件讀取成功完成時觸發(fā) </div><div> onloadend 讀取完成觸發(fā),無論成功或失敗 </div><div> onloadstart 讀取開始時觸發(fā) </div><div> onprogress 讀取中 </div><div> 獲取當前網(wǎng)絡(luò)狀態(tài)  </div><div> window.navigator.onLine 返回一個布爾值 網(wǎng)沒問題返回true否則返回false </div><div> 網(wǎng)絡(luò)狀態(tài)事件 (大部分為不支持和廢棄狀態(tài)也許移動端用的比較多) </div><div> window.ononline </div><div> window.onoffline </div><div> 獲取地理定位  </div><div> 獲取一次當前位置 </div><div> window.navigator.geolocation.getCurrentPosition(success,error); </div><div> success成功之后獲取位置信息 否則拋出錯誤,比如獲取位置信息被拒絕 </div><div> coords.latitude 維度 </div><div> coords.longitude 經(jīng)度 </div><div> 實時獲取當前位置 </div><div> window.navigator.geolocation.watchPosition(success,error); </div><div> 本地存儲 隨著互聯(lián)網(wǎng)的快速發(fā)展,基于網(wǎng)頁的應(yīng)用越來越普遍,同時也變的越來越復(fù)雜,為了滿足各種各樣的需求,會經(jīng)常性在本地存儲大量的數(shù)據(jù),傳統(tǒng)方式我們以document.cookie來進行存儲的,但是由于其存儲大小只有4k左右,并且解析也相當?shù)膹?fù)雜,給開發(fā)帶來諸多不便,HTML5規(guī)范則提出解決方案,使用sessionStorage和localStorage存儲數(shù)據(jù)。 </div><div> localStorage: </div><div> 永久生效 </div><div> 多窗口共享 </div><div> 容量大約為20M </div><div> ◆window.localStorage.setItem(key,value) 設(shè)置存儲內(nèi)容 </div><div> ◆window.localStorage.getItem(key) 獲取內(nèi)容 </div><div> ◆window.localStorage.removeItem(key) 刪除內(nèi)容 </div><div> ◆window.localStorage.clear() 清空內(nèi)容  </div><div> sessionStorage: </div><div> 生命周期為關(guān)閉當前瀏覽器窗口 </div><div> 可以在同一個窗口下訪問 </div><div> 數(shù)據(jù)大小為5M左右 </div><div> ◆window.sessionStorage.setItem(key,value) </div><div> ◆window.sessionStorage.getItem(key) </div><div> ◆window.sessionStorage.removeItem(key) </div><div> ◆window.sessionStorage.clear() </div><div> required如何修改默認提示選項 </div><div> 需要兩個幾個參數(shù) </div><div> placeholder = 默認提示用戶輸入 </div><div> oninvalid事件 = 當用戶輸入不符合規(guī)則的時候提示的內(nèi)容隨意改setCustomValidity 就是用來修改 requered值的函數(shù) </div><div> oninput事件 = 約等于chuange事件 立即執(zhí)行 </div><div> console.log('Hello World') </div> <p> 網(wǎng)頁題目:<a href="http://jinyejixie.com/news/115808.html">HTML5新特性總結(jié)</a> <br> URL鏈接:<a href="http://jinyejixie.com/news/115808.html">http://jinyejixie.com/news/115808.html</a> </p> <p> <a href="http://jinyejixie.com/" target="_blank">成都網(wǎng)站建設(shè)公司</a>_<a target="_blank">創(chuàng)新互聯(lián)</a>,為您提供<a href="http://jinyejixie.com/news/wxxcx/">微信小程序</a>、<a href="http://jinyejixie.com/news/yingxiao/">網(wǎng)站營銷</a>、<a href="http://jinyejixie.com/news/ruanjiankaifa/">軟件開發(fā)</a>、<a href="http://jinyejixie.com/news/pinpaisheji/">品牌網(wǎng)站設(shè)計</a>、<a href="http://jinyejixie.com/news/host/">虛擬主機</a>、<a href="http://jinyejixie.com/news/yidongjianshe/">移動網(wǎng)站建設(shè)</a> </p> <p class="adpic"> <a href="http://jinyejixie.com/service/ad.html" target="_blank" class="ad">廣告</a> <a href="" target="_blank" class="adimg"><img src=""></a> </p> <p class="copy"> 聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: <a href="http://jinyejixie.com/" target="_blank">創(chuàng)新互聯(lián)</a> </p> </div> <div id="37bum7c" class="newsmorelb"> <p>猜你還喜歡下面的內(nèi)容</p> <ul> <li> <a href="/news/115804.html">網(wǎng)站怎么樣推廣?</a> <span>2021-05-31</span> </li><li> <a href="/news/115802.html">電商“五大體系”構(gòu)筑互聯(lián)網(wǎng)快車</a> <span>2021-05-31</span> </li><li> <a href="/news/115800.html">互聯(lián)網(wǎng)高光時刻正在被“國風”包圍!</a> <span>2021-05-31</span> </li><li> <a href="/news/115798.html">把客戶作為核心的網(wǎng)站你了解的有多少?</a> <span>2021-05-31</span> </li><li> <a href="/news/115796.html">簡述網(wǎng)站LOGO設(shè)計的技巧</a> <span>2021-05-31</span> </li><li> <a href="/news/115794.html">線下零售除了拉個微信群,如何適應(yīng)互聯(lián)網(wǎng)?</a> <span>2021-05-31</span> </li><li> <a href="/news/115790.html">外鏈對網(wǎng)站的重要性</a> <span>2021-05-31</span> </li><li> <a href="/news/115788.html">建站方面問題總結(jié)</a> <span>2021-05-31</span> </li> </ul> </div> </div> <div id="as72y7j" class="col-lg-3 noneb"> <a href="http://jinyejixie.com/paiming/chengdu.html" title="成都seo排名網(wǎng)站優(yōu)化" target="_blank"><img src="/upload/news/paiming.png" alt="成都seo排名網(wǎng)站優(yōu)化" class="img-responsive"></a> <div id="dgvduag" class="bkright"> <p><a href="http://jinyejixie.com/news/jianshe/">網(wǎng)站建設(shè)知識</a></p> <ul> <li> <a class="text_overflow" href="/news/115807.html">深圳企業(yè)網(wǎng)站統(tǒng)計分析系統(tǒng)要觀察的指標</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115803.html">互聯(lián)網(wǎng)“數(shù)據(jù)服務(wù)”成為下沉市場“新寵”</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115801.html">客戶有網(wǎng)站問題你可以直接說,其實用不著這樣?</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115799.html">APP節(jié)日圖標設(shè)計思路</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115793.html">巧妙運用交互打造精致營銷網(wǎng)站</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115791.html">企業(yè)網(wǎng)站做好以后如何推廣,網(wǎng)站推廣需要注意的幾個重點</a> <span>2021-05-31</span> </li> <li> <a class="text_overflow" href="/news/115786.html">建設(shè)門戶網(wǎng)站有哪些方面值得關(guān)注?</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115785.html">北京黃女士建設(shè)網(wǎng)站的經(jīng)歷</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115779.html">工業(yè)互聯(lián)網(wǎng)細分賽道力量正在發(fā)力</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115778.html">網(wǎng)站開發(fā)的過程當中,應(yīng)該從哪幾個環(huán)節(jié)出發(fā)</a> <span>2021-05-31</span> </li><li> <a class="text_overflow" href="/news/115777.html">電商網(wǎng)站對于企業(yè)品牌宣傳的重要性</a> <span>2021-05-31</span> </li> </ul> </div> <div id="g2ofszq" class="bkright tag"> <p><a href="http://jinyejixie.com/hangye/" target="_blank">行業(yè)建站</a></p> <ul> <li id="q7ugzam" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/jiulousj/" target="_blank">酒樓設(shè)計</a> </li><li id="weiq7ss" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/jbgc/" target="_blank">攪拌罐車</a> </li><li id="7aoauqu" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/qzgqb/" target="_blank">輕質(zhì)隔墻板</a> </li><li id="7yuq27c" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/putaojia/" target="_blank">葡萄架</a> </li><li id="dlp7biz" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/ggsj/" target="_blank">廣告設(shè)計</a> </li><li id="gbibu7a" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/sclsb/" target="_blank">水處理設(shè)備</a> </li><li id="2lnk2zl" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/banjia/" target="_blank">搬家公司</a> </li><li id="hk2mnli" class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="http://jinyejixie.com/hangye/fwqtg/" target="_blank">服務(wù)器托管</a> </li> </ul> </div> </div> </div> <footer> <div id="b2fmbcd" class="carousel-inner footjz"> <div id="tbcy7lr" class="container"> <i class="icon iconfont zbw"></i> 高品質(zhì)定制 <i class="icon iconfont"></i> 跨終端自動兼容 <i class="icon iconfont"></i> 節(jié)約開發(fā)成本 <i class="icon iconfont"></i> 開發(fā)周期短 <i class="icon iconfont"></i> 一體化服務(wù) <button type="button" class="btn btn-default btn-lg" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 立即開始2800定制網(wǎng)站建設(shè)</button> <button type="button" class="btn btn-default btn-xs" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 2800定制網(wǎng)站建設(shè)</button> </div> </div> <div id="nkbdryk" class="carousel-inner bqsy"> <div id="8k72lhf" class="container"> <div id="twifrvc" class="lxfs"> <h4 class="yutelnone">028-86922220 13518219792</h4> <h4 class="yutelblock"><a href="tel:02886922220">028-86922220</a> <a href="tel:13518219792">13518219792</a></h4> <a class="btn btn-default" href="tencent://message/?uin=532337155&Site=&Menu=yes" role="button">網(wǎng)站建設(shè)<span>QQ</span>:532337155</a> <a class="btn btn-default" href="tencent://message/?uin=631063699&Site=&Menu=yes" role="button">營銷推廣<span>QQ</span>:631063699</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=532337155&version=1&src_type=web&web_src=oicqzone.com" role="button">網(wǎng)站制作<span>QQ</span>:532337155</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=631063699&version=1&src_type=web&web_src=oicqzone.com" role="button">營銷推廣<span>QQ</span>:631063699</a> <a class="btn btn-default nonea" href="tencent://message/?uin=1683211881&Site=&Menu=yes" role="button">售后QQ:1683211881</a> <div id="s77tfqr" class="dz">專注: <a target="_blank">定制網(wǎng)站建設(shè)</a><a target="_blank">做網(wǎng)站</a><a target="_blank">服務(wù)器托管</a><a target="_blank">成都網(wǎng)站制作</a><a target="_blank">廣告設(shè)計</a> <address>地址:成都太升南路288號錦天國際A幢10樓</address> </div> </div> <div id="rofws2i" class="bzdh dz"><img src="../imges/bottom_logo.png" alt="創(chuàng)新互聯(lián)"> <p><a href="http://jinyejixie.com/menu.html" target="_blank">成都創(chuàng)新互聯(lián)科技有限公司</a><br> Tel:400-028-6601(7x24h)</p></div> </div> </div> </footer> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://jinyejixie.com/" title="成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区">成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区</a> <div class="friend-links"> </div> </div> </footer> <a href="http://" target="_blank">龙山县</a>| <a href="http://" target="_blank">鸡东县</a>| <a href="http://" target="_blank">麻城市</a>| <a href="http://" target="_blank">波密县</a>| <a href="http://" target="_blank">静宁县</a>| <a href="http://" target="_blank">剑川县</a>| <a href="http://" target="_blank">海口市</a>| <a href="http://" target="_blank">恩施市</a>| <a href="http://" target="_blank">依安县</a>| <a href="http://" target="_blank">囊谦县</a>| <a href="http://" target="_blank">凤台县</a>| <a href="http://" target="_blank">河东区</a>| <a href="http://" target="_blank">桓台县</a>| <a href="http://" target="_blank">嘉黎县</a>| <a href="http://" target="_blank">张家口市</a>| <a href="http://" target="_blank">甘洛县</a>| <a href="http://" target="_blank">台北市</a>| <a href="http://" target="_blank">十堰市</a>| <a href="http://" target="_blank">石林</a>| <a href="http://" target="_blank">辽阳市</a>| <a href="http://" target="_blank">华蓥市</a>| <a href="http://" target="_blank">册亨县</a>| <a href="http://" target="_blank">鹿泉市</a>| <a href="http://" target="_blank">任丘市</a>| <a href="http://" target="_blank">尚志市</a>| <a href="http://" target="_blank">金坛市</a>| <a href="http://" target="_blank">民权县</a>| <a href="http://" target="_blank">灌南县</a>| <a href="http://" target="_blank">兴和县</a>| <a href="http://" target="_blank">阜新市</a>| <a href="http://" target="_blank">泾源县</a>| <a href="http://" target="_blank">江安县</a>| <a href="http://" target="_blank">宜黄县</a>| <a href="http://" target="_blank">阿拉善右旗</a>| <a href="http://" target="_blank">封丘县</a>| <a href="http://" target="_blank">桦川县</a>| <a href="http://" target="_blank">天祝</a>| <a href="http://" target="_blank">潼南县</a>| <a href="http://" target="_blank">云霄县</a>| <a href="http://" target="_blank">陈巴尔虎旗</a>| <a href="http://" target="_blank">临漳县</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="qchd7" class="pl_css_ganrao" style="display: none;"><output id="qchd7"><u id="qchd7"></u></output><div id="qchd7"><thead id="qchd7"><noscript id="qchd7"></noscript></thead></div><div id="qchd7"></div><noscript id="qchd7"><nav id="qchd7"><div id="qchd7"></div></nav></noscript><small id="qchd7"><s id="qchd7"><progress id="qchd7"><em id="qchd7"></em></progress></s></small><p id="qchd7"></p><dfn id="qchd7"><nobr id="qchd7"><source id="qchd7"></source></nobr></dfn><strong id="qchd7"></strong><bdo id="qchd7"></bdo><label id="qchd7"></label><sub id="qchd7"><ins id="qchd7"><optgroup id="qchd7"><cite id="qchd7"></cite></optgroup></ins></sub><span id="qchd7"></span><form id="qchd7"><dfn id="qchd7"><td id="qchd7"><ins id="qchd7"></ins></td></dfn></form><delect id="qchd7"><em id="qchd7"><style id="qchd7"><dl id="qchd7"></dl></style></em></delect><kbd id="qchd7"><table id="qchd7"><p id="qchd7"></p></table></kbd><optgroup id="qchd7"></optgroup><ul id="qchd7"></ul><rp id="qchd7"><optgroup id="qchd7"></optgroup></rp><pre id="qchd7"></pre><pre id="qchd7"><sup id="qchd7"><blockquote id="qchd7"></blockquote></sup></pre><strike id="qchd7"><form id="qchd7"><ul id="qchd7"><var id="qchd7"></var></ul></form></strike><rp id="qchd7"></rp><output id="qchd7"><u id="qchd7"></u></output><form id="qchd7"><dfn id="qchd7"><td id="qchd7"><pre id="qchd7"></pre></td></dfn></form><cite id="qchd7"></cite><dfn id="qchd7"><table id="qchd7"></table></dfn><legend id="qchd7"><sub id="qchd7"><li id="qchd7"><label id="qchd7"></label></li></sub></legend><optgroup id="qchd7"></optgroup><small id="qchd7"></small><dfn id="qchd7"></dfn><sup id="qchd7"><thead id="qchd7"></thead></sup><u id="qchd7"><var id="qchd7"><wbr id="qchd7"><output id="qchd7"></output></wbr></var></u><b id="qchd7"><nobr id="qchd7"><s id="qchd7"></s></nobr></b><track id="qchd7"></track><kbd id="qchd7"><noframes id="qchd7"><p id="qchd7"><pre id="qchd7"></pre></p></noframes></kbd><thead id="qchd7"></thead><pre id="qchd7"><del id="qchd7"><dfn id="qchd7"></dfn></del></pre><acronym id="qchd7"></acronym><small id="qchd7"><listing id="qchd7"><rt id="qchd7"></rt></listing></small><u id="qchd7"><var id="qchd7"><wbr id="qchd7"><dfn id="qchd7"></dfn></wbr></var></u><form id="qchd7"><strong id="qchd7"></strong></form><tbody id="qchd7"></tbody><thead id="qchd7"></thead><abbr id="qchd7"><code id="qchd7"><pre id="qchd7"></pre></code></abbr><dfn id="qchd7"></dfn><tr id="qchd7"></tr><table id="qchd7"></table><optgroup id="qchd7"></optgroup><label id="qchd7"><legend id="qchd7"><center id="qchd7"></center></legend></label><samp id="qchd7"></samp></div> </html>