CodeGuide icon indicating copy to clipboard operation
CodeGuide copied to clipboard

HTML 属性顺序

Open idododu opened this issue 8 years ago • 1 comments

属性应该按照特定的顺序出现以保证易读性;

class id name data-* src, for, type, href, value , max-length, max, min, pattern placeholder, title, alt aria-*, role required, readonly, disabled

建议修改为

属性应该按照特定的顺序出现以保证易读性;

class
id
name
data-*
src, type, href, value
placeholder, title, alt
 for,aria-*, role
required , max-length, max, min, pattern, readonly, disabled

因为for属性应该归类于ARIA max-length等应该归类于表单校验

idododu avatar Aug 24 '16 03:08 idododu

最终都是解析为节点对象的属性,这条纯粹是为了可读性
我建议按首字母排序:)

luoway avatar Mar 14 '18 06:03 luoway