当前位置:网站首页>What do the values 1, 2, and 3 in nodetype mean?
What do the values 1, 2, and 3 in nodetype mean?
2022-08-01 07:29:00 【Front end cutter Zz】
Question:
There is such a sentence in the source code of the viewer.js plugin (as abovepicture), what does it mean?
if (!element || element.nodeType !== 1) {throw new Error('The first argument is required and must be an element.');}
Parse:
All node types in JavaScript inherit from the Node type, so all node types share the same basic properties and methods.Each node has a nodeType property that indicates the type of node.
ThenodeType property returns the node type of the selected node, which allows us to know and distinguish each node in the document.
Syntax:
elementNode.nodeType
Return value: String value, representing the node type of the node.
The nodeType attribute has a total of 12 values (1~12), corresponding to different nodes.The node type is represented by the following 12 constants defined in the Node type, any node type must be one of them:
Example:
alert(Node.DOCUMENT_NODE); //9alert(document.nodeType == Node.DOCUMENT_NODE)span>; //true, not valid in IEalert(document.nodeType == 9); //true for all browsing
边栏推荐
- POJ2421道路建设题解
- 根据指定区域内容生成图片并进行分享总结
- 华为深度学习课程第九章——卷积神经网络以及案例实践
- 并发编程13-JUC之CountDownLatch
- How to generate and configure public key certificate in Alipay
- 13 - JUC CountDownLatch concurrent programming
- 【南瓜书ML】(task4)神经网络中的数学推导(更新ing)
- Golang:go开启web服务
- 基于百度OCR的网站验证码在线识别
- Chapters 6 and 7 of Huawei Deep Learning Course
猜你喜欢
随机推荐
Srping bean in the life cycle
Generate pictures based on the content of the specified area and share them with a summary
MVVM project development (commodity management system 1)
根据指定区域内容生成图片并进行分享总结
研发过程中的文档管理与工具
The Bean's life cycle
聊一聊ICMP协议以及ping的过程
The socket option
升级为重量级锁,锁重入会导致锁释放?
MATLAB program design and application of MATLAB 2.5
Golang: go to connect and use mysql
【MySQL】操作表DML相关语句
pytest接口自动化测试框架 | 使用函数返回值的形式传入参数值
配置我的kitty
最小生成树
Classwork (7) - #598. remainder operation (mod)
Data organization -- singly linked list of the linear table
数据分析5
pytest接口自动化测试框架 | 执行失败跳转pdb
搜索框字符自动补全