Attributes:
1.nodeName
Node name, equivalent to tagName. Attribute nodes return the attribute name, and text nodes return #text. nodeName, is read-only.
2 .nodeType
Value: 1, element node; 2, attribute node; 3, text node. nodeType is read-only.
3 .nodeValue
Returns a string indicating the value of this node. Element nodes return null, attribute nodes return attribute values, and text nodes return text. nodeValue is readable and writable, but cannot be written to element nodes. Generally only used to set the value of text nodes.
4 .childNodes
Returns an array of child nodes. The childNodes of text and attribute nodes are always null. You can use hasChildNodes() to determine whether there are child nodes. Read-only attribute. To delete and add nodes, you cannot use the method of operating the childNodes array.
5 .firstChild
Returns the first child node. Text and attribute nodes have no child nodes and will return an empty array. This is a special treatment for these two nodes. For element nodes, null will be returned if there are no child nodes. There is an equivalent equation: firstChild=childNodes[0].
6 .lastChild
Returns the last child node. The return value is the same as firstChild. Please refer to the above for the three-party treatment. There is an equivalent equation: lastChide=childNodes[childNodes.length-1].
7 .nextSibling()
Returns the next sibling node of the node. If there is no next sibling node, return null. Read-only property and cannot be changed by the application.
8 .previousSibling()
Returns the previous sibling node of the node. Same as above.
9 .parentNode()
Returns the parent node of the node. document.parentNode() returns null. In other cases, it will return an element node, because only element nodes have child nodes, and any node other than document has a parent node. parentNode(), another read-only guy.
Operation:
1. Create node
createElement('tagName');
For example: var oP=document.createElement('p') ;Created a
2. Create text node
createTextNode('text');
For example: var oText=document.createTextNode('This is a paragh!');
3. Append child nodes
appendChild(o); where o is the node object.
For example: document.body.appendChildNode(o); append
document.forms[0].appendChildNode(o) at the end of the body; append
oP.appendChildNode(o); at the end of the form The inner end is appended, and its total oP is the node object.
4. Create document fragment
createDocumentFragment();
For example: var oF=document.createDocumentFragment();
5. Delete node
removeChild(oP);
For example: document.body.removeChild(oP), removes the oP node object from the body.
6. Replace node
replaceChid(newOp, targetOp); Replace the target node targetOp with newOp
For example: document.body.replayChild(oPa,oPb).ps: How? So special? The source and destination operands are both parameters. Why is the caller document.body? Remember first, don’t interfere. ——What is replaced must be a child node of body. You can use other elements to replace document.body. The premise is the same. What is replaced must be a child node of this element.
7. Insert node
insertBefor(newOp,targetOp);
insertAfter(newOp,targetOp);
8. Set or get attribute node
setAttribute('key','value');
getAttribute('key','value')
9. Copy the node.
cloneNode(true/false)

1.原生js获取DOM节点:document.querySelector(选择器)document.getElementById(id选择器)document.getElementsByClassName(class选择器)....2.vue2中获取当前组件的实例对象:因为每个vue的组件实例上,都包含一个$refs对象,里面存储着对应的DOM元素或组件的引用。所以在默认情况下,组件的$refs指向一个空对象。可以先在组件上加上ref="名字",然后通过this.$refs.

在网页开发中,DOM(DocumentObjectModel)是一个非常重要的概念。它可以让开发者轻松地对一个网页的HTML或XML文档进行修改和操作,比如添加、删除、修改元素等。而PHP中内置的DOM操作库也为开发者提供了丰富的功能,本文将介绍PHP中的DOM操作指南,希望可以帮助到大家。DOM的基本概念DOM是一个跨平台、独立于语言的API,它可以将

dom是一种文档对象模型,同时也是用于html编程的接口,通过dom来操作页面中的元素。DOM是HTML文档的内存中对象表示,它提供了使用JavaScript与网页交互的方式。DOM是节点的层次结构(或树),其中document节点作为根。

vue3ref绑定dom或者组件失败原因分析场景描述在vue3中经常用到使用ref绑定组件或者dom元素的情况,很多时候,明明使用ref绑定了相关组件,但是经常ref绑定失败的情况。ref绑定失败情况举例ref绑定失败的绝大多数情况是,在ref和组件绑定的时候,该组件还未渲染,所以绑定失败。或者组件刚开始未渲染,ref未绑定,当组件开始渲染,ref也开始绑定,但是ref和组件并未绑定完成,这个时候使用组件相关的方法就会出现问题。ref绑定的组件使用了v-if,或者他的父组件使用了v-if导致页面

dom和bom对象有:1、“document”、“element”、“Node”、“Event”和“Window”等5种DOM对象;2、“window”、“navigator”、“location”、“history”和“screen”等5种BOM对象。

bom和dom在作用和功能、与JavaScript的关系、相互依赖性、不同浏览器的兼容性和安全性考虑等方面都有区别。详细介绍:1、作用和功能,BOM的主要作用是操作浏览器窗口,它提供了浏览器窗口的直接访问和控制,而DOM的主要作用则是将网页文档转换为一个对象树,允许开发者通过这个对象树来获取和修改网页的元素和内容;2、与JavaScript的关系等等。

dom内置对象有:1、document;2、window;3、navigator;4、location;5、history;6、screen;7、document.documentElement;8、document.body;9、document.head;10、document.title;11、document.cookie。


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

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.

Notepad++7.3.1
Easy-to-use and free code editor

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.

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
