Javascipt method of selecting document elements (recommended) _javascript tips

Source: Internet
Author: User
Tags tagname

From the JavaScript Authority Guide (jquery's ultimate way to find elements based on the style selector is to get all the DOM elements with getElementsByTagName (*), and then filter all DOM elements according to the style selector)

How to select a document element:

1. Select elements by ID (getElementById)

1 Use Method:document.getElementById ("Domid")
Where Domid is the id attribute value of the element to be selected

2 compatibility: Lower than IE8 version of IE browser implementation of the getElementById method is case-insensitive, and will return the element that matches the name property.

2. Select element by name (Getelementsbyname)

1 Use Method:document.getelementsbyname ("Domname")
Where Domname is the Name property value of the element to select

2) Description:

A. The return value is a NodeList collection (different from array)

B. Unlike the id attribute, the Name property is valid only in a few DOM elements (form form, form element, iframe, IMG). This is because the Name property is created to facilitate the submission of form data.

C. When you set the Name property for form, IMG, IFRAME, applet, embed, object elements, you automatically create properties that are named with the Name property value in the Document object. So you can refer to the corresponding DOM object by Document.domname

3 compatibility: The element matching the id attribute value in IE will also return together

3. Select elements by label name (getElementsByTagName)

1 Use Method:document.getelementsbytagname ("TagName")

where element is a valid DOM element (including document)
TagName is the label name of the DOM element

such as:var ainput = document.getelementsbytagname ("input");

var aname = ainput[0];

var pwd = ainput[1];

var cfm = ainput[2];

2) Description: A. The return value is a NodeList collection (different from array)

B. This method can only select the descendant elements of the element that invokes the method.

C. tagname is case insensitive

D. When TagName is *, indicates that all elements are selected (subject to the B. Rules)

E. HTMLDocument defines some shortcut properties to access the label node. For example: Document images, forms, links properties point to , <form>, <a> tag elements collection, and Document.body and Document.head always point to the body and head tags (the browser also creates the Document.head property when the statement head label is not displayed)

4, through the CSS class selection element (Getelementsbyclassname)

1 Use Method:element.getelementsbyclassname ("Classnames")

where element is a valid DOM element (including document)

Classnames is a combination of CSS class names (with spaces between multiple class names, which can be separated by multiple spaces),

such as Element.getelementsbyclassname ("Class2 Class1") will select elements in elements descendant elements that apply both Class1 and Class2 styles (style names are not sequential)

2) Description:

A. The return value is a NodeList collection (different from array)

B. This method can only select the descendant elements of the element that invokes the method.

3 Compatibility: IE8 and the following version of the browser do not implement the Getelementsbyclassname method

5. Select elements through CSS Selector

1 Use Method:document.queryselectorall ("selector")

Where the selector is a legitimate CSS selector

2) Description: A. The return value is a NodeList collection (different from array)

3 Compatibility: IE8 and the following version of the browser only supports CSS2 standard selector syntax

The above Javascipt Select document elements of the method (recommended) is small to share all the content of everyone, hope to give you a reference, but also hope that we support the cloud habitat community.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.