在JavaScript中使用什么更好的表现?
document.children[0].children[1]
VS
document.querySelector('body')
哪种性能更快?
答案 0 :(得分:15)
这里你有从快到慢的结果
document.body
(到目前为止)document.querySelector('body')
,document.children[0].children[1]
,document.getElementsByTagName('body')[0]
(大致相同)document.querySelectorAll("body")[0]
来源JSPerf(亲自尝试)