Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否存在使 DOM 查询更快的属性顺序?例如在元素的开头\结尾。
当我向上遍历 DOM 时,将属性放在最后会更好,反之,当我向下遍历 DOM 时会更好吗?
不,浏览器解析 HTML 并构造 DOM。此时页面的文字来源不再重要,因此 DOM 查询不受顺序的影响。
但是我个人喜欢把我的 id 放在第一位,然后是 class,然后是其他任何东西。为了可读性。