<div class="test1">
<div class="test1">
<div class="test1"></div>
<div class="test1"></div>
<div class="test1">
<div class="test1">
<div class="test1"></div>
</div>
</div>
<div class="test1"></div>
<div class="test1"></div>
</div>
<div class="test1">
<div class="test1"></div>
<div class="test1">
<div class="test1">
<div class="test1"></div>
</div>
</div>
<div class="test1">
<div class="test1">
<div class="test1"></div>
</div>
</div>
<div class="test1"></div>
</div>
<div class="test1"></div>
<div class="test1">
<div class="test1"></div>
<div class="test1">
<div class="test1">
<div class="test1"></div>
</div>
<div class="test1"></div>
</div>
<div class="test1"></div>
<div class="test1"></div>
<div class="test1"></div>
</div>
<div class="test1"></div>
<div class="test1">
<div class="test1">
<div class="test1"></div>
<div class="test1">
<div class="test1">
<div class="test1">
<article class="test" id="test"></article>
</div>
<div class="test1">
<div class="test1"></div>
</div>
<div class="test1"></div>
</div>
<div class="test1"></div>
</div>
</div>
<div class="test1"></div>
<div class="test1"></div>
</div>
<div class="test1">
<div class="test1"></div>
<div class="test1">
<div class="test1"></div>
<div class="test1"></div>
</div>
<div class="test1"></div>
<div class="test1"></div>
<div class="test1"></div>
</div>
</div>
document.getElementById("test");
document.querySelector("#test")
document.getElementsByClassName("test")
document.querySelector(".test")
document.getElementsByTagName("article")
document.querySelector("article")
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
getElementById | |
querySelector (id) | |
getElementsByClassName | |
querySelector (class) | |
getElementsByTagName | |
querySelector (tag) |
Test name | Executions per second |
---|---|
getElementById | 3573833.5 Ops/sec |
querySelector (id) | 1314474.8 Ops/sec |
getElementsByClassName | 3909238.0 Ops/sec |
querySelector (class) | 1182266.1 Ops/sec |
getElementsByTagName | 3962080.0 Ops/sec |
querySelector (tag) | 1263613.8 Ops/sec |
Let's break down what's being tested in the provided benchmark.
The main goal of this benchmark is to compare the performance of different DOM query methods:
getElementById
querySelector
with an ID selector ("#test"
)getElementsByClassName
with a class name selector ("test"
)getElementsByTagName
with a tag name selector ("article"
)querySelector
with a class selector (".test"
)Each test case has the same HTML structure, which contains multiple elements with a specific class or ID.
Here's a brief overview of each query method:
getElementById
: Returns the first element with the specified ID.querySelector
with an ID selector: Returns the first element that matches the specified ID.getElementsByClassName
: Returns a list of all elements that have the specified class name. This method is slower than querySelector
because it requires iterating over all elements and checking their classes.getElementsByTagName
: Returns a list of all elements that match the specified tag name.querySelector
with a class selector: Returns the first element that matches the specified class.Now, let's discuss the pros and cons of each approach:
getElementById
:
Pros:
Cons:
querySelector
with an ID selector:
Pros:
Cons:
getElementsByClassName
:
Pros:
Cons:
querySelector
due to its iterative approachgetElementsByTagName
:
Pros:
Cons:
querySelector
with a class selectorIn terms of performance, the latest benchmark results show that:
getElementsByTagName
is the fastest method, followed closely by querySelector
with an ID selector.querySelector
with a class selector is relatively slow due to its iterative approach.Keep in mind that these results may vary depending on the specific browser, version, and environment being tested.
Overall, this benchmark highlights the importance of choosing the right DOM query method for your use case, considering factors like performance, flexibility, and precision.