您好,登錄后才能下訂單哦!
前端開發這個行業發展飛速,特別是即將普遍的HTML5,本文將整理HTML5的基本使用。對于HTML5的新增屬性,
1,新DOCTYPE
還在使用那個討厭的的標準doctype?試試下面這個
<!DOCTYPE HTML >
small重新定義
不久前,我使用了<small>標簽來創建與logo相關的副標題。但是在HTML5中重新定義了<small>標簽,使之更能表現語義化,在<small>的字號都會變小,想想如果這個標簽用于網站的底部的版權信息還是個不錯的做法。
<link href="path/to/stylesheet.css">
<script src="path/to/script.js"></script>
是否使用雙引號
<h7 id="someId"> Start the reactor.? </h7>
使網頁內容可以編輯
<h7 contenteditable="true">Break mechanical cab <span>driver</span></h7>
<form method="get">
<label for="email">Email:</label>
<input id="email" name="email" type="email">
<button> Submit Form </button>
</form>
占位符
<input name="email" placeholder="doug@givethesepeopleair.com" type="email">
本地存儲
HTML5的本地存儲功能,可以讓現代瀏覽器“記住”我們輸入的,就算瀏覽器關閉和刷新也不會受影響。雖然這個功能有些瀏覽器不支持,但是IE8, Safari 4, 還有 Firefox 3.5還是支持這個功能的,你可以測試下。自己是一個五年的全棧工程師,這里推薦一下我的前端學習交流君羊:前面是四八四,中間七五七,最后七六零,群里會不定期更新最新的教程和學習方法,有想學習web前端的,或是轉行,或是大學生,還有工作中想提升自己能力的web前端黨歡迎加入,
?
<footer>
...
</footer>
<input type="text" name="someInput" required>
<input type="text" name="someInput" required="required">
<input name="someInput" placeholder="Douglas Quaid" required="required" autofocus="autofocus" type="text">
<audio tabindex="0" autoplay="autoplay" controls="controls">
<source src="file.ogg">
<source src="file.mp3">
<a href="file.mp3">Download this file.</a>
</audio>
為什么會有兩種格式的音頻文件?因為Firefox和Webkit瀏覽器所支持的格式存在差異,Firefox只能支持.ogg文件,而Webkit只支 持.mp3的文件,解決的辦法就是創建兩個版本的音頻文件,這樣就可以兼容Firefox和Webkit的瀏覽器了,需要注意的是IE不支持該標簽。
<video tabindex="0" controls="" preload="">
<source src="cohagenPhoneCall.ogv" type="video/ogg; codecs='vorbis, theora'">
<source src="cohagenPhoneCall.mp4" type="video/mp4; 'codecs='avc1.42E01E, mp4a.40.2'">
<div> Your browser is old. <a href="cohagenPhoneCall.mp4">Download this video ×××tead.</a> </div>
</video>
<video tabindex="0" preload="preload" controls="controls">
...
</video>
<form action="" method="post">
<label for="username">Create a Username: </label>
<input name="username" id="username" placeholder="4 <> 10" pattern="[A-Za-z]{4,10}" autofocus="autofocus" required="required" type="text">
<button type="submit">Go </button>
</form>
alert( 'pattern' in document.createElement('input') ) // boolean;
<h4> Search Results </h4>
<h7> They were interrupted, just after Quato said, <mark>"Open your Mind"</mark>. </h7>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。