dom

DOM BOM ES

日考:

1.js包含那几个部分:es bom dom

2.什么是BOM:BOM是浏览器的模型 BOM提供给ES一个操作浏览器的接口

3.BOM有几大对象

  • 屏幕(screen)

  • 窗口(window)

  • 历史记录 (histroy)

  • 地址栏

  • 版本信息

4.什么是DOM:DOM是文档对象模型 ,DOM是文档一个接口操作文档

5.DOM有几大对象?

  • 文档对象

  • 元素对象

  • 文本对象

  • 属性对象

  • 节点对象

js包含哪几部分

  • ES:一门语言,学习ES学习的是语法(ECMA:欧洲计算机协会ecmascript)

  • BOM:浏览器对象模型 用途:提供ES一个接口来操作浏览器

  • DOM:文档对象模型 用途:提供ES一个入口来操作文档

BOM

  • BOM: Browser Object Model 浏览器对象模型

  • BOM:吧浏览器的一切定义成了一个对象模型

    • window:把文档看出一个对象

    • Histroy:把历史记录定义成了一个对象

    • Screen:把显示浏览器窗口的屏幕定义成一个对象

    • Location:把地址定义成一个对象

    • Navigator:把浏览器的介绍信息定义成一个对象

  • BOM的用途:允许ES操作浏览器的一切

  • BOM目前没有标准

DOM

  • DOM:Dcoument Object model 文档对象模型

  • 用途:DOM就是为了操作文档用的

  • 在DOM眼里,整个文档的内容都是对象

  • DOM文档的一切内容都定义成了对象。

    • 文档是对象

    • 元素是对象

    • 文本是对象

    • 属性是对象

    • 样式是对象

  • DOM是W3c制定的一套标准

[图片上传失败...(image-d1fb7a-1676033812914)]

Document对象

定义

  • 表示:document对象表示网页文档

  • 地位:document对象是DOM的核心对象

  • 用途:document对象是访问文档的入口

用途

document对象主要用途:

  • 查:获取元素

  • 增:创建元素

  • 删:删除元素

  • 改:替换元素

获取元素的方法

传统方法

  • 通过id获取元素

    getElementByle()

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1211" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js">window.document.getElementByle('id')
//等同于
document.getElementByid('id')</pre>

  • 通过标签名获取元素

    getElementsByTagName('标签')

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1216" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js">window.document.getElementsByTagName('标签')</pre>

H5新增方法

特殊方法

  • document.docymentElement:获取文档中的<html>元素

  • document.body:获取文档中的body元素

  • document.head:获取文档中<head>元素

  • document.title:获取文档中的<title>元素

  • document.links:获取文档中的<a>元素

  • document.images:获取文档中的<img>元素

操作文档内容

在获取元素之后,我们要学习元素对象之间的关系。DOM定义了两套API:

  • Node API(节点):把DOM树中的对象看成节点

  • Element API(元素API):把DOM树中的对象看出元素树

Node API

定义

Node API把文档中的一切对象看出是节点(node)

用途

  • 查找节点的基本信息:名称,类型,值

  • 节点之间的关系:父子,兄弟

  • 操作节点:增,删,改,查

Node.nodeType

定义了节点的类型。节点类型使用一个数字表示。Node API把节点类型分为9种

节点名字 数字表示
元素节点 1
属性节点 2
文本节点 3
注释节点 8
文档节点 9

1:元素节点

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1274" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js">console.log(document.documentElement.nodeType) //1</pre>

2:属性节点元素.getAttributeNode("属性名"):方法从当前元素中通过名称获取属性节点

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1276" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js"> console.log(document.body.getAttributeNode("id").nodeType)//2</pre>

3:文本节点:childNodes,属性可返回指定节点的子节点的节点列表

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1278" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js"><body id="home">
<h2>二级标题</h2>

<script>
//获取文本节点的方法
const arr = document.body.childNodes
console.log(arr[0].nodeType)//3
</script></pre>

8:注释节点:childNodes,属性可返回指定节点的子节点的节点列表

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1280" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js"><body id="home">
<h2>二级标题</h2>

<script>
//获取注释节点的方法
const arr = document.body.childNodes
console.log(arr[3].nodeType)//8
</script></pre>

9:文档节点:

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1282" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js"> console.log(document.nodeType)//=9</pre>

节点定义

父节点:一个节点之上的直接节点

子节点:一个节点之下的直接节点

兄弟节点:具有相同父节点的节点

后代节点:一个节点之下所有成绩的节点

查找节点关系

  • Node.childNodes:属性可返回指定节点的子节点的节点列表

  • 元素.getAttributeNode("属性名"):方法从当前元素中通过名称获取属性节点

  • Node.arentNode:返回当前节点的父节点对象

  • Node.childNodes:返回当前节点的子节点列表

  • Node.nextSibling:返回当前节点的下一个兄弟节点

  • Node.previousSibling:返回当前节点的上一个兄弟节点

  • Node.firstChid:返回当前节点的第一个节点

  • Node.lastChild:返回当前节点的最后一个节点

Array.from(伪数组)

  • 将伪数组转成真数组

<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" cid="n1311" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: Menlo, Monaco, "Courier New", monospace; font-size: 1.125rem; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(255, 255, 255); position: relative !important; color: rgb(122, 122, 122); padding: 0.5rem 1.125em; margin-bottom: 0.88em; border: 1px solid rgb(122, 122, 122); line-height: 1.5rem; width: inherit; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;" lang="js">Array.form(document.images//把伪数组转成真正的数组)</pre>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容

  • 2js组成 我们都知道,javascript有三部分构成,ECMAScript,DOM和BOM,根据宿主(浏览器)...
    微笑_edac阅读 398评论 0 0
  • 之前通过深入学习DOM的相关知识,看了慕课网DOM探索之基础详解篇这个视频(在最近看第三遍的时候,准备记录一点东西...
    微醺岁月阅读 4,459评论 2 62
  • 日考 一:js包括哪几部分? DOM BOM ES 二:什么是DOM? DOM:文档对象模型 DOM是操作文档的...
    败于化纤阅读 157评论 0 0
  • JS包含哪几部分? ES:一门语言,学习ES,学习的是语法。(ECMA:欧洲计算机协会 ECMAScript) B...
    烂好人_5b0f阅读 186评论 0 1
  • BOM是浏览器对象模型,DOM是文档对象模型;前者是对浏览器本身进行操作,而后者是对浏览器(可看成容器)内的内容进...
    learninginto阅读 289评论 0 9