@ (猴頭)css
Input 新增屬性html
email 郵箱(只在手機端有效)html5
url 網址(只在iphone手機有效)css3
tel 手機號(只在手機端有效)數組
number 數字(右側有上下按鈕,只能輸入數字,+號,-號,. 和e)瀏覽器
input 日期時間(手機端效果比較好)緩存
date 年月日iphone
time 小時和分async
datetime 年月日+小時和分 (iphone和安卓都再也不兼容,電腦端也不兼容)測試
datetime-local 本地年月日+小時和分
month 年月
week 年和周 (iphone不兼容)
<input type="date"><br> <input type="time"><br> <input type="datetime"><br> <input type="datetime-local"><br> <input type="month"><br> <input type="week"><br>
seach 與 text 區別:
search右邊有個叉叉
<input type="range" min="10" max="100"><br> <input type="search"><br> <input type="color"><br>
form 和 input的自動完成功能 autocomplete="on"
<form action="index.html" autocomplete="on"> <input type="text" name="text"><br> <input type="email" name="email" autocomplete="off"> <input type="submit"> </form>
autofocus 自動獲取焦點
<form action="index.html" autocomplete="on"> <input type="text" name="text"><br> <input type="email" name="email" autocomplete="off" autofocus="autofocus"> <input type="submit"> </form>
multiple 適用於file 和 email
file 能夠上傳多個文件
email 添加multiple,則上傳到後臺爲數組;不添加上傳到後臺爲字符串
<form action="index.html" autocomplete="on"> <input type="file" name="file" multiple="multiple"><br> <input type="email" name="email" autocomplete="off" autofocus="autofocus" multiple="multiple"><br> <input type="email" name="email2" autofocus="autofocus"> <input type="submit"> </form>
placeholder 屬性適用於 text password email tel url search
<form action="index.html"> <input type="text" name="text" required><br> <input type="email" name="email" required><br> <input type="submit"> </form>
網頁在瀏覽器顯示的圖標
<link rel="icon" href="cat-little.jpg" type="image/jpeg" sizes="16*16">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <base href="http://www.baidu.com" target="_blank"> </head> <body> <a href="">測試連接</a> </body> </html>
給全部連接設置新窗口打開
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <base target="_blank"> </head> <body> <a href="http://www.baidu.com">測試連接</a> </body>
最後一個知識點,其實我還沒弄懂,別人那裏搬運來的:
文檔解析的過程當中,若是遇到script
腳本,就會中止頁面的解析進行下載(可是Chrome會作一個優化,若是遇到script
腳本,會快速的查看後邊有沒有須要下載其餘資源的,若是有的話,會先下載那些資源,而後再進行下載script
所對應的資源,這樣可以節省一部分下載的時間 @Update: 2018-08-17
)。
資源的下載是在解析過程當中進行的,雖然說script1
腳本會很快的加載完畢,可是他前邊的script2
並無加載&執行,因此他只能處於一個掛起的狀態,等待script2
執行完畢後再執行。
當這兩個腳本都執行完畢後,纔會繼續解析頁面。
文檔解析時,遇到設置了defer
的腳本,就會在後臺進行下載,可是並不會阻止文檔的渲染,當頁面解析&渲染完畢後。
會等到全部的defer
腳本加載完畢並按照順序執行,執行完畢後會觸發DOMContentLoaded
事件。
async
腳本會在加載完畢後執行。async
腳本的加載不計入DOMContentLoaded
事件統計,也就是說下圖兩種狀況都是有可能發生的
若是你的腳本代碼依賴於頁面中的DOM
元素(文檔是否解析完畢),或者被其餘腳本文件依賴。
例:
polyfill.js
若是你的腳本並不關心頁面中的DOM
元素(文檔是否解析完畢),而且也不會產生其餘腳本須要的數據。
例:
若是不太能肯定的話,用defer
老是會比async
穩定。。。
ol 新增屬性
start 表示起始,reversed 表示倒序
<ol start="2" reversed="reversed"> <li>html</li> <li>html5</li> <li>css</li> <li>css3</li> </ol>
manifest 定義離線緩存文件
<!DOCTYPE html> <html lang="en" manifest="index.manifest"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> </body> </html>
scoped 可使樣式嵌入在網頁的任何一個位置,有這種寫法,但不建議使用
<!DOCTYPE html> <html lang="en" manifest="index.manifest"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <style scoped> </style> </body> </html>