This article brings you relevant knowledge about javascript, which mainly introduces the relevant content about obtaining elements and nodes, including obtaining elements through id, class name, name, and tag name. , creating, deleting, cloning nodes and other issues, let’s take a look at them together, I hope it will be helpful to everyone.
[Related recommendations: javascript video tutorial, web front-end】
Get elements
- Get by ID (getElementById)
- By name attribute (getElementsByName)
- By tag name (getElementsByTagName)
- By class name (getElementsByClassName)
- Get an element by selector (querySelector)
- By selection The device gets a set of elements (querySelectorAll)
- Method to get html (document.documentElement)
- Method to get body (document .body)
1. Get by ID (getElementById)
// 1 获取元素节点 // 通过id的方式( 通过id查找元素,大小写敏感,如果有多个id只找到第一个) document.getElementById('p1');
- The context must be document.
- Must pass parameters. The parameter is of string type and is used to obtain the id of the element.
- The return value only obtains one element, and returns null if it is not found.
2. By class name (getElementsByClassName)
// 通过类名查找元素,多个类名用空格分隔,得到一个HTMLCollection(一个元素集合,有length属性,可以通过索引号访问里面的某一个元素) var cls = document.getElementsByClassName('a b'); console.log(cls);
- The parameter is the class name of the element.
- The return value is a class array, if not found an empty array is returned
3. Through the name attribute (getElementsByName)
// 通过name属性查找,返回一个NodeList(一个节点集合,有length属性,可以通过索引号访问) var nm = document.getElementsByName('c'); console.log(nm);
4. By tag name (getElementsByTagName)
// 通过标签名查找元素 返回一个HTMLCollection document.getElementsByTagName('p');
- The parameter is to get the tag name attribute of the element, which is not case-sensitive.
- The return value is an array-like array, if not found an empty array is returned
5. Get an element through the selector (querySelector)
document.querySelector('.animated')
- The parameter is the selector, such as: "p .className".
- Return a single node, if there are multiple matching elements, return the first one
6. Get a set of elements through the selector (querySelectorAll)
document.querySelector('.animated')
- The return value is a class array
Get the node
In the Document Object Model (DOM), each node is an object. DOM nodes have three important attributes
1. nodeName: the name of the node
2. nodeValue: the name of the node Value
3. nodeType: The type of node
1. nodeName attribute: The name of the node, It is read-only.
- The nodeName of the element node is the same as the label name
- The nodeName of the attribute node is the name of the attribute
- The nodeName of the text node is always #text
- The nodeName of the document node is always #document
2. nodeValue attribute: the value of the node
- The nodeValue of the element node is undefined Or null
- The nodeValue of the text node is the text itself
- The nodeValue of the attribute node is the value of the attribute
3. nodeType attribute: the type of node, It is read-only. The following commonly used node types:
- Element type Node type
- Element 1
- Attribute 2
- Text 3 Space Also returns 3
- Comment 8
- Document 9
Create node:
1. Create node: createElement('')
// 创建元素,只是创建出来并未添加到html中,需要与appendChild 配合使用 var elem = document.createElement('p'); elem.id = 'test'; elem.style = 'color: red'; elem.innerHTML = '我是新创建的节点'; document.body.appendChild(elem);
2. Insert node: appendChild ()
- Usage is: parent. appendChild(child)
- will add the child node to the end of the parent If the child node already exists, the original node will be removed and the new node will be added to Finally, but the event will remain
var oNewp=document.createElement("p"); var oText=document.createTextNode("World Hello"); oNewp.appendChild(oText);
2-1. Insert node: insertBefore()
- 用法是 parent.insertBefore(newNode,refNode);
var oOldp=document.body.getElementsByTagName("p")[0]; document.body.insertBefore(oNewp,oOldp);
删除节点
1.删除节点:removeChild
- 用法是:parent.removeChild(child)
- 如果删除的不是父元素的子节点会报错
var op=document.body.getElementsByTagName("p")[0]; op.parentNode.removeChild(op);
克隆节点
1.克隆节点:parent.cloneNode() false 或者true
- 克隆节点(需要接受一个参数来表示是否复制元素)
// 克隆节点(需要接受一个参数来表示是否复制元素) var form = document.getElementById('test'); var clone = form.cloneNode(true); clone.id = 'test2'; document.body.appendChild(clone);
替换节点
1.替换节点 方法node.replace(new,old)
var oOldp=document.body.getElementsByTagName("p")[0]; oOldp.parentNode.replaceChild(oNewp,oOldp);
文档碎片框
- 作用:当向document中添加大量的节点时,如果逐个添加将会十分缓慢,这时可以使用文档碎片一次性添加到document中
- 语法:document.createDocumentFragment();
- 承载节点
(function() { var start = Date.now(); var str = '', li; var ul = document.getElementById('ul'); var fragment = document.createDocumentFragment(); for(var i=0; i<p>【相关推荐:<a href="https://www.php.cn/course/list/17.html" target="_blank" textvalue="javascript视频教程">javascript视频教程</a>、<a href="https://www.php.cn/course/list/1.html" target="_blank">web前端</a>】</p>
The above is the detailed content of JavaScript knowledge points collection: obtaining elements and nodes. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Mac version
God-level code editing software (SublimeText3)
