当前位置:网站首页>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.nodeTypeReturn 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边栏推荐
猜你喜欢

Offer brush questions - 1

rhcsa 第三次

Image lossless compression software which works: try completely free JPG - C image batch finishing compression reduces weight tools | latest JPG batch dressing tools download

Guest brush SQL - 2

Golang:go开启web服务

华为深度学习课程第六、七章

微信小程序请求封装

MATLAB program design and application of MATLAB 2.5

I have three degrees, and I have five faces. I was "confessed" by the interviewer, and I got an offer of 33*15.

特别数的和
随机推荐
rhcsa 第四天
The socket option
图片无损压缩软件哪个好用:试试完全免费的JPG-C 图片批量修整压缩减肥工具吧 | 最新jpg批量修整工具下载
return; represents meaning
特别数的和
日志导致线程Block的这些坑,你不得不防
微信小程序请求封装
最小生成树
USB 协议 (二) 术语
第02章 MySQL的数据目录【1.MySQL架构篇】【MySQL高级】
05-SDRAM: Arbitration
VoLTE Basic Learning Series | Enterprise Voice Network Brief
Image lossless compression software which works: try completely free JPG - C image batch finishing compression reduces weight tools | latest JPG batch dressing tools download
如何使用Photoshop合成星轨照片,夜空星轨照片后期处理方法
爬虫框架 Scrapy 详解
支付宝如何生成及配置公钥证书
【手撕AHB-APB Bridge】~ AHB地址总线的低两位为什么不用来表示地址呢?
Create, modify and delete tables
【HDLBits 刷题】Circuits(1)Combinational Logic
22牛客多校1 I. Chiitoitsu (概率dp)