Difference between querySelector and getElementById methods in JS

Difference between querySelector and getElementById methods in JS

1. Overview

When looking at the code, I found querySelector() and querySelectorAll() are basically used to get elements, and I wondered why getElementById() is not used.
Maybe because I have never used those two, I don’t know the reason.

1.1 Usage of querySelector() and querySelectorAll()

querySelector() method

Definition: querySelector() method returns an element in the document that matches the specified CSS selector;

Note: uerySelector() method returns only the first element that matches the specified selector. If you need to return all elements, please use the querySelectorAll() method instead;

Syntax: document.querySelector(CSS selectors);

Parameter value: String Required. Specifies one or more CSS selectors for matching elements. Select elements using their id, class, type, attribute, attribute value, etc.
For multiple selectors, separate them with commas and return a single matching element.
Return value: The first element that matches the specified CSS selector. If not found, returns null. If an invalid selector is specified, a SYNTAX_ERR exception is thrown.

querySelectorAll() Method

Definition: querySelectorAll() method returns all elements in the document that match the specified CSS selector and returns a NodeList object;
A NodeList object represents a collection of nodes. Can be accessed by index, index value starts from 0;

Tip: You can use the length property of the NodeList object to get the element attributes that match the selector, and then iterate over all elements to get the desired information;

Syntax: elementList = document.querySelectorAll(selectors);
elementList is a static object of type NodeList ;
selectors is a string containing one or more CSS selectors separated by commas;

Parameter value: String . Required. Specifies one or more elements that match the CSS selector. You can use id , class , type, attribute, attribute value, etc. as selectors to get elements.
Use commas (,) to separate multiple selectors.

返回值: A NodeList object representing all elements in the document that match the specified CSS selector.
NodeList is a static object of NodeList type. If the specified selector is invalid, a SYNTAX_ERR exception is thrown.

1.2 Usage of getElement(s)Byxxxx

getElementById() Method

Definition: getElementById() method returns a reference to the first object with the specified ID.
If there is no element with the specified ID, returns null ;
If there are multiple elements with the specified ID, the first one is returned;
If you need to find elements that don't have an ID, you can consider using querySelector() with a CSS selector;

Syntax: document.getElementById(elementID);

Parameter value: String . Required. The element ID attribute value.
Return value: element object element with specified ID

getElementsByTagName() Method

Definition: getElementsByTagName() method returns a collection of objects with the specified tag name;
Tip: The parameter value "*" returns all elements of the document;
Syntax: document.getElementsByTagName(tagname)
Parameters: String required The tag name of the element to be obtained;
Return value: NodeList object, a collection of elements with the specified tag name

getElementsByClassName() method

Definition: getElementsByClassName() method returns a collection of all elements with a specified class name in the document as a NodeList object.
NodeList object represents an ordered list of nodes. NodeList object can access the nodes in the table through the node index number in the node list (the index number starts from 0).
Tip: You can use the length property of the NodeList object to determine the number of elements of the specified class name, and loop through each element to get the one you need.
Syntax: document.getElementsByClassName(classname)
Parameters: String The class name of the element to be retrieved. Multiple class names are separated by spaces, such as " test demo ";
Return value: NodeList object, representing the element collection of the specified class name. The order of elements in the collection is the order in which they appear in the code.

2. Difference

2.1 getElement(s)Byxxxx gets a dynamic collection, querySelector gets a static collection

Dynamic means that the selected elements will change with the document, while static means that they will not be related to the changes in the document after they are taken out.

Example 1:

<body>
  <ul id="box">
    <li class="a">Test 1</li>
    <li class="a">Test 2</li>
    <li class="a">Test 3</li>
  </ul>
</body>

<script type="text/javascript">
  //Get ul, in order to dynamically add li later
  var ul = document.getElementById('box');
  //Get the li in the existing ul
  var list = ul.getElementsByTagName('li');
  for(var i =0; i < list.length; i++){
    ul.appendChild(document.createElement('li')); //Dynamically append li
  }
</script>

The above code will fall into an infinite loop, i < list.length This loop condition.
Because after getting the three li in it for the first time, every time a new element is added to ul, the list will update its value and re-get all the li in ul.
That is, getElement(s)Byxxxx obtains a dynamic collection, which will always change with the change of dom structure.
That is, each call to list will re-query the document, resulting in an infinite loop problem.

Example 1 Modification:

Change the for loop condition to i < 4. As a result, 4 new elements are added to ul, so the number of li tags inserted now is 7.

<body>
  <ul id="box">
    <li class="a">Test 1</li>
    <li class="a">Test 2</li>
    <li class="a">Test 3</li>
  </ul>
</body>

<script type="text/javascript">
  var ul = document.getElementById('box');

  var list = ul.getElementsByTagName('li');
  for(var i = 0; i < 4; i++){
    ul.appendChild(document.createElement('li'));
  }
  console.log('list.length:',list.length);
</script>

Difference between querySelector and getElementById javascript JavaScript

Example 2:

The following code static collection is reflected in .querySelectorAll('li') to obtain all li in ul. No matter how many li are added dynamically later, it will not affect its parameters.

<body>
  <ul id="box">
    <li class="a">Test 1</li>
    <li class="a">Test 2</li>
    <li class="a">Test 3</li>
  </ul>
</body>

<script type="text/javascript">
  var ul = document.querySelector('ul');

  var list = ul.querySelectorAll('li');
  for(var i = 0; i < list.length; i++){
    ul.appendChild(document.createElement('li'));
  }
  console.log('list.length:',list.length); //The output result is still 3, not the number of li at this time 6
</script>

The difference _javascript_02 querySelector and getElementById methods in JavaScript

Why is it designed like this?

The querySelectorAll method is clearly defined in the W3C specification:

The NodeList object returned by the querySelectorAll() method must be static ([DOM], section 8).

Let's take a look at what happens on Chrome:

document.querySelectorAll('a').toString(); // return "[object NodeList]"
document.getElementsByTagName('a').toString(); // return "[object HTMLCollection]"

HTMLCollection is defined as follows in W3C:

An HTMLCollection is a list of nodes. An individual node may be accessed by either ordinal index or the node's name or id attributes. Note: Collections in the HTML DOM are assumed to be live meaning that they are automatically updated when the underlying document is changed.

In fact, HTMLCollection and NodeList are very similar. They are both dynamic collections of elements, and each access requires re-querying the document.
Difference: HTMLCollection belongs to Document Object Model HTML specification, while NodeList belongs to Document Object Model Core specification.

This is a bit difficult to understand, it will be easier to understand if you look at the following example:

var ul = document.getElementsByTagName('ul')[0],
    lis1 = ul.childNodes,
    lis2 = ul.children;
console.log(lis1.toString(), lis1.length); // "[object NodeList]" 11
console.log(lis2.toString(), lis2.length); // "[object HTMLCollection]" 4

NodeList object will contain all nodes in the document, such as Element , Text , and Comment ;
The HTMLCollection object will only contain the Element nodes in the document;
In addition, the HTMLCollection object provides one more namedItem method than NodeList object;
Therefore, in the browser, the return value of querySelectorAll is a static NodeList object, while the return value of getElementsBy series is actually an HTMLCollection object.

2.2 The received parameters are different

The parameter received by querySelectorAll method is a CSS selector;
The parameters received by getElementsBy series can only be a single className , tagName and name ;

var c1 = document.querySelectorAll('.b1 .c');
var c2 = document.getElementsByClassName('c');
var c3 = document.getElementsByClassName('b2')[0].getElementsByClassName('c');

Note: The parameters received by querySelectorAll must strictly comply with the CSS selector specification. The following writing will throw an exception (element names, classes, and IDs in CSS selectors cannot start with numbers).

try {
  var e1 = document.getElementsByClassName('1a2b3c');
  var e2 = document.querySelectorAll('.1a2b3c');
} catch (e) {
  console.error(e.message);
}
console.log(e1 && e1[0].className);
console.log(e2 && e2[0].className);

2.3 Different browser compatibility

querySelectorAll is supported by IE 8+, FF 3.5+, Safari 3.1+, Chrome and Opera 10+;
getElementsBy series, taking getElementsByClassName as an example, which is added to the specification at the latest, is already supported by IE 9+, FF 3+, Safari 3.1+, Chrome and Opera 9+;

This is the end of this article about the difference between querySelector and getElementById methods in JavaScript. For more relevant content about querySelector and getElementById in JavaScript, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • The difference between js querySelector and getElementById in getting elements by id

<<:  HTML page jump code

>>:  Pure CSS to achieve three-dimensional picture placement effect example code

Recommend

Vue image cropping component example code

Example: tip: This component is based on vue-crop...

js development plug-in to achieve tab effect

This article example shares the specific code of ...

Implementing timed page refresh or redirect based on meta

Use meta to implement timed refresh or jump of th...

How to add website icon?

The first step is to prepare an icon making softwa...

Detailed steps to install Sogou input method on Ubuntu 20.04

1. Install Fcitx input framework Related dependen...

MySQL 8.0.17 installation and usage tutorial diagram

Written in front In the past and in the current p...

Simple example of adding and removing HTML nodes

<br />Simple example of adding and removing ...

How to draw a cool radar chart in CocosCreator

Table of contents Preface Preview text Graphics C...

About CSS floating and canceling floating

Definition of Float Sets the element out of the n...

Analysis of the principle and creation method of Mysql temporary table

This article mainly introduces the principle and ...

Detailed explanation of samba + OPENldap to build a file sharing server

Here I use samba (file sharing service) v4.9.1 + ...

Native Js implementation of calendar widget

This article example shares the specific code of ...

MySQL Flush-List and dirty page flushing mechanism

1. Review The Buffer Pool will be initialized aft...