HTML 屬性順序

admin發表於2019-01-15

HTML標籤具有一些屬性,比如type、class或者id等。

為了提高可讀性,推薦屬性按照如下順序排列:

(1).class

(2).id, name

(3).data-*

(4).src, for, type, href

(5).title, alt

(6).aria-*, role

(7).disabled、checked或者selected

由於class可以用於表示高度複用的元件,所以放在首位也就不難理解了。

簡單程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<input class="txt" name="txt" type="text" disabled>
<input type="checkbox" value="1" checked>

基本是記憶性知識,非常簡單,不多介紹。

相關文章