输入HTML属性/值对的顺序是否重要?

2ul0zpep  于 2022-12-21  发布在  其他
关注(0)|答案(2)|浏览(85)

我有代码:

<input autocomplete="off" autofocus name="name" placeholder="Name" type="text">

这个顺序在造型或性能上有什么重要的吗?

kninwzqo

kninwzqo1#

不,在样式或性能方面没有重要性,但是,应该注意的是,如果出于任何原因出现冲突/重复的标签,the first one will be prioritized

5lhxktic

5lhxktic2#

不,顺序并不重要,HTML在呈现之前被解析为DOM structure
唯一的例外是使用the same attribute name twice

相关问题