HTML5新特性
簡潔的DOCTYPE:
HTML5 只有一個(gè)簡單的文檔類型:<!DOCTYPE html>
,表示瀏覽器會按照標(biāo)準(zhǔn)模式解析。
簡單易記的編碼類型
你現(xiàn)在可以在meta 標(biāo)簽中使用”charset”:<meta charset=”utf-8″ />
腳本和鏈接無需type
<link rel="stylesheet" href="path/to/stylesheet.css" />
<script src="path/to/script.js"></script>
更加語義化的新增標(biāo)簽
比如說:<article>、<section>、<aside>、<hgroup>、 <header>,<footer>、<nav>、<time>、<mark>、<figure> 和<figcaption>等
視頻和音頻
<video width="640" height="320" preload="auto" poster="0.jpg" controls>
<source src="movie.ogg" type="video/ogg" />
<source src="movie.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
表單增強(qiáng)
新的input類型:color, email, date, month, week, time, datetime, datetime-local, number,range,search, tel, 和url
新屬性:required, autofocus, pattern, list, autocomplete 和placeholder
新元素:<keygen>, <datalist>, <output>, <meter> 和<progress>
canvas標(biāo)簽繪制2D圖形。
var canvas = document.getElementById('canvas');
var context = canvas.getContext('2d');
context.beginPath();
context.moveTo(100,100);
context.lineTo(300,300);
context.lineTo(100,500);
context.lineWidth = 5;
context.strokeStyle = "red";
context.stroke();
地理位置獲取
HTML語義化
1.什么是HTML語義化?
通過標(biāo)簽判斷內(nèi)容語義,例如根據(jù)h1標(biāo)簽判斷出內(nèi)容是標(biāo)題,根據(jù)<p>判斷內(nèi)容是段落、<input>標(biāo)簽是輸入框等。
2.為什么要語義化?
1).去掉或樣式丟失的時(shí)候能讓頁面呈現(xiàn)清晰的結(jié)構(gòu)
2).方便其他設(shè)備解析(如屏幕閱讀器、盲人閱讀器、移動設(shè)備)以意義的方式來渲染網(wǎng)頁
3).有利于SEO
4).便于團(tuán)隊(duì)開發(fā)和維護(hù),遵循W3C標(biāo)準(zhǔn),可以減少差異化
3.如何確定你的標(biāo)簽是否語義良好?
去掉樣式,看網(wǎng)頁結(jié)構(gòu)是否組織良好有序,是否仍然有很好的可讀性。
4.常見的語義化標(biāo)簽?zāi)K
表單
<form action="" method="">
<fieldset style="border: none">
<legend style="display: none">登錄表單</legend>
<p><label for="name">賬號:</label><input type="text" id="name"></p>
<p><label for="pw">密碼:</label><input type="password" id="pw"></p>
<input type="submit" name="登錄" class="subBtn">
</fieldset>
</form>
表單域要用fieldset標(biāo)簽包起來,并用legend標(biāo)簽說明表單的用途;每個(gè)input標(biāo)簽對應(yīng)的說明文本都需要使用label標(biāo)簽,并且通過為input設(shè)置id屬性,在lable標(biāo)簽中設(shè)置for=someld來讓說明文本和相對應(yīng)的input關(guān)聯(lián)起來。
5.語義化標(biāo)簽應(yīng)注意的一些問題
盡可能少的使用無語義的標(biāo)簽div和span;
在語義不明顯時(shí),既可以使用div或者p時(shí),盡量用p, 因?yàn)閜在默認(rèn)情況下有上下間距,對兼容特殊終端有利;
不要使用純樣式標(biāo)簽,如:b、font、u等,改用css設(shè)置。
需要強(qiáng)調(diào)的文本,可以包含在strong或者em標(biāo)簽中,strong默認(rèn)樣式是加粗(不要用b),em是斜體(不用i)
總結(jié)
以上所述是小編給大家介紹的HTML5新特性之語義化標(biāo)簽,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!