国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

javaScript 高級(jí)程序設(shè)計(jì)筆記——DOM

JinB / 3374人閱讀

摘要:一類型在中,所有的節(jié)點(diǎn)類型都繼承自類型。包含文檔中所有帶特性的元素包含文檔中所有的元素包含文檔中所有的元素包含文檔中所有帶特性的元素一致性檢測(cè)因?yàn)榉譃槎鄠€(gè)級(jí)別,也包含多個(gè)部分,因此檢測(cè)瀏覽器實(shí)現(xiàn)了的哪些部分就十分必要。

DOM是針對(duì)HTML和XML文檔的一個(gè)API
DOM描繪了一個(gè)層次化的節(jié)點(diǎn)樹(shù),允許開(kāi)發(fā)人員輕松自如地添加、刪除、替換、修改頁(yè)面的某一部分

一、節(jié)點(diǎn)層次

DOM將HTML文檔描繪成一個(gè)層次化的節(jié)點(diǎn)樹(shù),HTML文檔中的任何內(nèi)容都可以通過(guò)樹(shù)中的一個(gè)節(jié)點(diǎn)來(lái)表示:

HTML元素表示成元素節(jié)點(diǎn)

HTML屬性表示成屬性節(jié)點(diǎn)

注釋表示成注釋節(jié)點(diǎn)
......

DOM中共有12種節(jié)點(diǎn)類型。

(一) Node類型

在javascript中,所有的節(jié)點(diǎn)類型都繼承自Node類型。Node類型定義了節(jié)點(diǎn)類型的一些基本屬性和方法,這些屬性和方法被所有的節(jié)點(diǎn)共享。

1、基本屬性

(1)nodeType:表明節(jié)點(diǎn)的類型

元素節(jié)點(diǎn).nodeType = 1

文本節(jié)點(diǎn).nodeType = 3

(2)nodeName:節(jié)點(diǎn)的名稱

元素節(jié)點(diǎn).nodeName = 元素的標(biāo)簽名(大寫(xiě))

(3)nodeValue:節(jié)點(diǎn)的值

元素節(jié)點(diǎn).nodeValue = null

2、節(jié)點(diǎn)關(guān)系

文檔中所有的節(jié)點(diǎn)之間存在著各種關(guān)系,節(jié)點(diǎn)間的關(guān)系可以用傳統(tǒng)的家族關(guān)系來(lái)描述。
(1)childNodes屬性

作用:返回節(jié)點(diǎn)的所有子節(jié)點(diǎn),這些子節(jié)點(diǎn)組成NodeList對(duì)象(NodeList對(duì)象并不是Array實(shí)例)

語(yǔ)法:someNode.childNode

訪問(wèn)保存在NodeList對(duì)象中的子節(jié)點(diǎn)

someNode.childNodes[0];

someNode.childNodes.item(0)

(2)parentNode屬性

作用:指向文檔樹(shù)中的父節(jié)點(diǎn)

包含在childNodes列表中的所有節(jié)點(diǎn)都有相同的父節(jié)點(diǎn)

(3)firstChild、lastChild屬性

分別指向childNodes列表中的第一個(gè)和最后一個(gè)節(jié)點(diǎn)

(4)previousSibling、nextSibling屬性

(5)ownerDocument屬性

該屬性指向整個(gè)文檔的文檔節(jié)點(diǎn)

(6)hasChildNodes()方法

當(dāng)節(jié)點(diǎn)包含一個(gè)或多個(gè)子節(jié)點(diǎn)時(shí)返回true

3、操作節(jié)點(diǎn)

DOM提供了一些操作節(jié)點(diǎn)的方法:

(1)添加節(jié)點(diǎn)

appendChild():向NodeList列表的末尾添加一個(gè)節(jié)點(diǎn),并返回新增的節(jié)點(diǎn)

insertBefore(newNode,參照節(jié)點(diǎn)):向參照節(jié)點(diǎn)的前面插入newNode,并返回新節(jié)點(diǎn)

(2)替換節(jié)點(diǎn)

replaceChild(新節(jié)點(diǎn),要替換的節(jié)點(diǎn)):要替換的節(jié)點(diǎn)被新節(jié)點(diǎn)替換,并被方法返回

(3)刪除節(jié)點(diǎn)

removeChild(要?jiǎng)h除的節(jié)點(diǎn)):刪除要?jiǎng)h除的節(jié)點(diǎn),并返回要?jiǎng)h除的節(jié)點(diǎn)

注意:上述四個(gè)方法操作的是某個(gè)節(jié)點(diǎn)的子節(jié)點(diǎn),即這四個(gè)方法均需要先取得父節(jié)點(diǎn)(parentNode)

4、其他方法

(1)cloneNode(true/false)

作用:復(fù)制調(diào)用該方法的節(jié)點(diǎn)

參數(shù)為true時(shí):執(zhí)行深復(fù)制,即復(fù)制節(jié)點(diǎn)及其整個(gè)子節(jié)點(diǎn)樹(shù)

參數(shù)為false時(shí):執(zhí)行淺復(fù)制,即只復(fù)制該節(jié)點(diǎn)本身

復(fù)制后的節(jié)點(diǎn)及其子節(jié)點(diǎn)屬于文檔,但是它沒(méi)用父節(jié)點(diǎn)

(2)normalize()

作用:處理文檔樹(shù)中的文本節(jié)點(diǎn),該方法會(huì)刪除空文本節(jié)點(diǎn)/或者將相鄰的文本節(jié)點(diǎn)合并為一個(gè)文本節(jié)點(diǎn)

(二) Document類型

Document類型可以表示HTML頁(yè)面或者其他基于XML的文檔,其中最常見(jiàn)的是作為HTMLDocument 實(shí)例的document對(duì)象,該對(duì)象表示整個(gè)HTML頁(yè)面。Document節(jié)點(diǎn)具有下列特征:

nodeType = 9

nodeName = "#document"

nodeValue = null

parentNode = null

ownerDocument = null

1.文檔的子節(jié)點(diǎn)

DOM規(guī)定Document節(jié)點(diǎn)的子節(jié)點(diǎn)可以是以下幾種:
(1)DocumentType

通常標(biāo)簽看成一個(gè)與文檔其他部分不同的實(shí)體,可以通過(guò)doctype屬性訪問(wèn)該標(biāo)簽

語(yǔ)法:var doctype = document.doctype

因?yàn)椴煌臑g覽器對(duì)該屬性的支持差別很大,所以該屬性的用處不大

(2)Element
有兩個(gè)內(nèi)置屬性可以快速地訪問(wèn)Document節(jié)點(diǎn)的子節(jié)點(diǎn):

documentElement:訪問(wèn)文檔的元素 //var html = document.documentElement

body:訪問(wèn)元素 //var body = document.body

(3)Comment

按照定義,出現(xiàn)在元素外部的注釋?xiě)?yīng)該算是文檔的子節(jié)點(diǎn),然而不同的瀏覽器對(duì)這些外部注釋的解析不同,故通常不在元素外部使用注釋。

(4)ProcessingInstruction

2、文檔信息

document對(duì)象作為HTMLDocument的一個(gè)實(shí)例,還有幾個(gè)標(biāo)準(zhǔn)Document對(duì)象沒(méi)有的屬性:

title:獲取元素中的文本,即當(dāng)前頁(yè)面的標(biāo)題 //document.title</p> <p>URL:返回地址欄中的URL</p> <p>domain:頁(yè)面的域名</p> <p>referrer:返回鏈接到當(dāng)前頁(yè)面的URL</p> <b>3、查找元素</b> <p><strong>(1)getElementById()</strong></p> <p><strong>(2)getElementsByTagName()</strong></p> <p>該方法返回一個(gè)HTMLCollection對(duì)象,作為一個(gè)“動(dòng)態(tài)”集合,該對(duì)象與NodeList很相似</p> <p> <p>訪問(wèn)HTMLCollection對(duì)象中元素的方法: <br>(假設(shè), var images=document.getElementsByTagName("img");)</p> <p>images[0]</p> <p>images.item(0)</p> <p>images.namedItem("myImage")=images["myImage"] //獲取的圖片</p> </p> <p><strong>(3)getElementsByName()</strong></p> <b>4、特殊集合</b> <p>為了方便訪問(wèn)文檔的常用部分,document對(duì)象還提供了一些特殊的集合,這些集合都是HTMLCollection對(duì)象。</p> <p>document.anchors:包含文檔中所有帶name特性的<a>元素</p> <p>document.forms:包含文檔中所有的<form>元素</p> <p>document.images:包含文檔中所有的<img>元素</p> <p>document.links:包含文檔中所有帶href特性的<a>元素</p> <b>5、DOM一致性檢測(cè)</b> <p><strong>因?yàn)镈OM分為多個(gè)級(jí)別,也包含多個(gè)部分,因此檢測(cè)瀏覽器實(shí)現(xiàn)了DOM的哪些部分就十分必要。</strong></p> <p>document.implementation屬性就可以實(shí)現(xiàn)檢測(cè)瀏覽器對(duì)DOM版本的支持情況</p> <p>document.implementation.hasFeature(要檢測(cè)的DOM功能名稱,版本號(hào)),若瀏覽器支持給定名稱和版本的功能,該方法返回true。</p> </div> <div id="hv5pvvh" class="mt-64 tags-seach" > <div id="9nvnddr" class="tags-info"> <a style="width:120px;" title="GPU云服務(wù)器" href="http://m.specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務(wù)器</a> <a style="width:120px;" title="云服務(wù)器" href="http://m.specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務(wù)器</a> <a style="width:120px;" title="高級(jí)程序設(shè)計(jì)-筆記" href="http://m.specialneedsforspecialkids.com/yun/tag/gaojichengxusheji-biji/">高級(jí)程序設(shè)計(jì)-筆記</a> <a style="width:120px;" title="高級(jí)javascript程序設(shè)計(jì)" href="http://m.specialneedsforspecialkids.com/yun/tag/gaojijavascriptchengxusheji/">高級(jí)javascript程序設(shè)計(jì)</a> <a style="width:120px;" title="javascript高級(jí)程序設(shè)計(jì)" href="http://m.specialneedsforspecialkids.com/yun/tag/javascriptgaojichengxusheji/">javascript高級(jí)程序設(shè)計(jì)</a> <a style="width:120px;" title="javascript高級(jí)程序" href="http://m.specialneedsforspecialkids.com/yun/tag/javascriptgaojichengxu/">javascript高級(jí)程序</a> </div> </div> <div id="fbfj5tr" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。</p> <p>轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/85093.html</p> </div> <ul class="pre-next-page"> <li id="xldxxl5" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/85092.html">上一篇:VueJS源碼學(xué)習(xí)——工具類函數(shù)實(shí)現(xiàn)</a></li> <li id="rzbfz5v" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/85094.html">下一篇:從實(shí)現(xiàn)角度分析js原型鏈</a></li> </ul> </div> <div id="fldxpjn" class="about_topicone-mid"> <h3 class="top-com-title mb-0"><span data-id="0">相關(guān)文章</span></h3> <ul class="com_white-left-mid atricle-list-box"> <li> <div id="hdhntjx" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/89363.html"><b>001-讀書(shū)<em>筆記</em>-<em>JavaScript</em><em>高級(jí)</em><em><em>程序</em><em>設(shè)計(jì)</em></em> <em>JavaScript</em>簡(jiǎn)介</b></a></h2> <p class="ellipsis2 good">摘要:由于計(jì)算機(jī)的國(guó)際化,組織的標(biāo)準(zhǔn)牽涉到很多其他國(guó)家,因此組織決定改名表明其國(guó)際性。規(guī)范由萬(wàn)維網(wǎng)聯(lián)盟制定。級(jí)標(biāo)準(zhǔn)級(jí)標(biāo)準(zhǔn)是不存在的,級(jí)一般指的是最初支持的。 這篇筆記的內(nèi)容對(duì)應(yīng)的是《JavaScript高級(jí)程序設(shè)計(jì)(第三版)》中的第一章。 1.ECMA 和 ECMA-262 ECMA 是歐洲計(jì)算機(jī)制造商協(xié)會(huì)的縮寫(xiě),全程是 European Computer Manufacturers Ass...</p> <div id="hfxd7tx" class="com_white-left-info"> <div id="7zdhzzn" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1367.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/13/small_000001367.jpg" alt=""><span id="hjrzf5n" class="layui-hide64">masturbator</span></a> <time datetime="">2019-08-21 17:18</time> <span><i class="fa fa-commenting"></i>評(píng)論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="ht7bvt5" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/78146.html"><b>《<em>JavaScript</em><em>高級(jí)</em><em><em>程序</em><em>設(shè)計(jì)</em></em>》<em>筆記</em>:<em>JavaScript</em>簡(jiǎn)介(一)</b></a></h2> <p class="ellipsis2 good">摘要:實(shí)現(xiàn)一個(gè)完整的實(shí)現(xiàn)應(yīng)該由下列三個(gè)不同的部分組成核心文檔對(duì)象模型瀏覽器對(duì)象模型文檔對(duì)象模型是針對(duì)但經(jīng)過(guò)擴(kuò)展用于的應(yīng)用程序編程接口。級(jí)別級(jí)由兩個(gè)模塊組成核心和。其中,核心規(guī)定是如何映射基于的文檔結(jié)構(gòu),以便簡(jiǎn)化對(duì)文檔中任意部分的訪問(wèn)和操作。 javascript從一個(gè)簡(jiǎn)單的輸入驗(yàn)證器發(fā)展成為一門(mén)強(qiáng)大的編程語(yǔ)言,完全出乎人們的意料。 javascript實(shí)現(xiàn)一個(gè)完整的javascript實(shí)現(xiàn)應(yīng)...</p> <div id="dp7zpd7" class="com_white-left-info"> <div id="tfzn5fr" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1006.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/10/small_000001006.jpg" alt=""><span id="rfzf5fr" class="layui-hide64">Edison</span></a> <time datetime="">2019-08-19 14:51</time> <span><i class="fa fa-commenting"></i>評(píng)論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="pn7phlp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/92112.html"><b><em>JavaScript</em><em>高級(jí)</em><em><em>程序</em><em>設(shè)計(jì)</em></em>學(xué)習(xí)<em>筆記</em>一(<em>JavaScript</em>簡(jiǎn)介)</b></a></h2> <p class="ellipsis2 good">摘要:在上百種語(yǔ)言中算是命好的一個(gè),還有就是最近納入高考體系的。由以下三個(gè)部分構(gòu)成。就是對(duì)實(shí)現(xiàn)該標(biāo)準(zhǔn)規(guī)定的各個(gè)方面內(nèi)容的語(yǔ)言的描述。是針對(duì)但經(jīng)過(guò)擴(kuò)展的用于的應(yīng)用程序編程接口。將頁(yè)面映射為由節(jié)點(diǎn)構(gòu)成的樹(shù)狀結(jié)構(gòu)。 JavaScript的歷史這里就不再贅述了,當(dāng)然JavaScript的歷史還是比較有意思的。在上百種語(yǔ)言中JavaScript算是‘命’好的一個(gè),還有就是最近納入高考體系的python...</p> <div id="xjpf7db" class="com_white-left-info"> <div id="vtlnt7x" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1602.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/16/small_000001602.jpg" alt=""><span id="nn5hlzp" class="layui-hide64">supernavy</span></a> <time datetime="">2019-08-22 11:17</time> <span><i class="fa fa-commenting"></i>評(píng)論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="rhzt7jv" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/78450.html"><b>《<em>JavaScript</em><em>高級(jí)</em><em><em>程序</em><em>設(shè)計(jì)</em></em>》學(xué)習(xí)<em>筆記</em>:<em>JavaScript</em>中的事件流和事件處理<em>程序</em></b></a></h2> <p class="ellipsis2 good">摘要:可以使用偵聽(tīng)器或處理程序來(lái)預(yù)訂事件,以便事件發(fā)生時(shí)執(zhí)行相應(yīng)的代碼。響應(yīng)某個(gè)事件的函數(shù)稱為事件處理程序或事件偵聽(tīng)器。可以刪除通過(guò)級(jí)方法指定的事件處理程序。 JavaScript和HTML之間的交互是通過(guò)事件實(shí)現(xiàn)的。 事件:文檔或?yàn)g覽器窗口中發(fā)生的一些特定的交互瞬間。 可以使用偵聽(tīng)器(或處理程序來(lái)預(yù)訂事件),以便事件發(fā)生時(shí)執(zhí)行相應(yīng)的代碼。 1. 事件流 事件流:從頁(yè)面中接收事件的順序。 ...</p> <div id="tjnvz5f" class="com_white-left-info"> <div id="jbhbrtx" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1219.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/12/small_000001219.jpg" alt=""><span id="77jj5ll" class="layui-hide64">Rocko</span></a> <time datetime="">2019-08-19 17:21</time> <span><i class="fa fa-commenting"></i>評(píng)論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="7t5b57j" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/85401.html"><b>《<em>JavaScript</em><em>高級(jí)</em><em><em>程序</em><em>設(shè)計(jì)</em></em>》<em>筆記</em>:<em>DOM</em>擴(kuò)展(十一)</b></a></h2> <p class="ellipsis2 good">摘要:取得所有類中包含和的元素。類名的先后順序無(wú)所謂取得為的元素中帶有類名的所有元素焦點(diǎn)管理也添加了輔助管理焦點(diǎn)的功能。首先就是屬性,這個(gè)屬性始終會(huì)引用中當(dāng)前獲得了焦點(diǎn)的元素。另外就是新增了方法,這個(gè)方法用于確定文檔是否獲得了焦點(diǎn)。 選擇符API querySelector()方法 // 取得body元素 var tbody = document.querySelector(body); ...</p> <div id="zj7hb57" class="com_white-left-info"> <div id="rrhnrbr" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1682.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/16/small_000001682.jpg" alt=""><span id="jv5tnxn" class="layui-hide64">BenCHou</span></a> <time datetime="">2019-08-21 10:22</time> <span><i class="fa fa-commenting"></i>評(píng)論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> </ul> </div> <div id="jvntxlv" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評(píng)論</span></h3> <div id="n7xnfdd" class="xcp-publish-main flex_box_zd"> <div id="5ldvbpb" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評(píng)論</a> </div> </div> </div> <div id="prj7vhf" class="site-box-content"> <div id="rbt57d7" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評(píng)論</span></h3> </div> <div id="dbft7nl" class="pages"></ul></div> </div> </div> <div id="tjnhdfp" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="nxnvpnz" class=""> <div id="bp7xbdd" class="com_layuiright-box user-msgbox"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1492.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/14/small_000001492.jpg" alt=""></a> <h3><a href="http://m.specialneedsforspecialkids.com/yun/u-1492.html" rel="nofollow">JinB</a></h3> <h6>男<span>|</span>高級(jí)講師</h6> <div id="rzd57lz" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(1492)" id="attenttouser_1492" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="zld5tf7" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://m.specialneedsforspecialkids.com/yun/ut-1492.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/119624.html">2021-09-08</a></h3> <p>閱讀 2668<span>·</span>2021-09-09 09:33</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/116944.html">前端每日實(shí)戰(zhàn):84# 視頻演示如何用純 CSS 創(chuàng)作一個(gè)極品飛車(chē) loader</a></h3> <p>閱讀 2821<span>·</span>2019-08-30 15:54</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/115964.html">css基礎(chǔ)</a></h3> <p>閱讀 2880<span>·</span>2019-08-30 14:21</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/114198.html">[無(wú)心插柳]簡(jiǎn)單實(shí)現(xiàn)常用的表單校驗(yàn)函數(shù)</a></h3> <p>閱讀 2367<span>·</span>2019-08-29 17:15</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/113605.html">CSS自定義屬性 —— 別說(shuō)你懂CSS相對(duì)單位</a></h3> <p>閱讀 3591<span>·</span>2019-08-29 16:13</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/113068.html">【前端Talkking】CSS系列-紅月亮、藍(lán)月亮、X月亮,還是漸變?cè)铝梁?/a></h3> <p>閱讀 2770<span>·</span>2019-08-29 14:21</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/108806.html">js數(shù)組筆記</a></h3> <p>閱讀 3436<span>·</span>2019-08-26 13:25</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/108294.html">js異步編程-async,await以及不可以取代的Promise</a></h3> <p>閱讀 2039<span>·</span>2019-08-26 12:14</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="fptlpff" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動(dòng)</span></h6> <div id="jldfv5v" class="com_adbox"> <div id="p5l5r57" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://m.specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://m.specialneedsforspecialkids.com/yun/data/attach/240625/2rTjEHmi.png" alt="云服務(wù)器"> </a> </div> <div> <a href="http://m.specialneedsforspecialkids.com/site/product/gpu.html" rel="nofollow"> <img src="http://m.specialneedsforspecialkids.com/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務(wù)器"> </a> </div> </div> </div> </div> <!-- banner結(jié)束 --> <div id="drtxvjz" class="adhtml"> </div> <script> $(function(){ $.ajax({ type: "GET", url:"http://m.specialneedsforspecialkids.com/yun/ad/getad/1.html", cache: false, success: function(text){ $(".adhtml").html(text); } }); }) </script> </div> </div> </div> </div> </div> </section> <!-- wap拉出按鈕 --> <div id="r7rjlzd" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="r7xphf5" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="7dj7v5v" id="payread"> <div id="ljh7lpp" class="layui-form-item">閱讀需要支付1元查看</div> <div id="ttxb7pd" class="layui-form-item"><button class="btn-right">支付并查看</button></div> </div> <script> var prei=0; $(".site-seo-depict pre").each(function(){ var html=$(this).html().replace("<code>","").replace("</code>","").replace('<code class="javascript hljs" codemark="1">',''); $(this).attr('data-clipboard-text',html).attr("id","pre"+prei); $(this).html("").append("<code>"+html+"</code>"); prei++; }) $(".site-seo-depict img").each(function(){ if($(this).attr("src").indexOf('data:image/svg+xml')!= -1){ $(this).remove(); } }) $("LINK[href*='style-49037e4d27.css']").remove(); $("LINK[href*='markdown_views-d7a94ec6ab.css']").remove(); layui.use(['jquery', 'layer','code'], function(){ $("pre").attr("class","layui-code"); $("pre").attr("lay-title",""); $("pre").attr("lay-skin",""); layui.code(); $(".layui-code-h3 a").attr("class","copycode").html("復(fù)制代碼 ").attr("onclick","copycode(this)"); }); function copycode(target){ var id=$(target).parent().parent().attr("id"); var clipboard = new ClipboardJS("#"+id); clipboard.on('success', function(e) { e.clearSelection(); alert("復(fù)制成功") }); clipboard.on('error', function(e) { alert("復(fù)制失敗") }); } //$(".site-seo-depict").html($(".site-seo-depict").html().slice(0, -5)); </script> <link rel="stylesheet" type="text/css" href="http://m.specialneedsforspecialkids.com/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <script src="http://m.specialneedsforspecialkids.com/yun/static/js/neweditor/code/highlight.pack.js" type="text/javascript"></script> <script src="http://m.specialneedsforspecialkids.com/yun/static/js/clipboard.js"></script> <script>hljs.initHighlightingOnLoad();</script> <script> function setcode(){ var _html=''; document.querySelectorAll('pre code').forEach((block) => { var _tmptext=$.trim($(block).text()); if(_tmptext!=''){ _html=_html+_tmptext; console.log(_html); } }); } </script> <script> function payread(){ layer.open({ type: 1, title:"付費(fèi)閱讀", shadeClose: true, content: $('#payread') }); } // 舉報(bào) function jupao_tip(){ layer.open({ type: 1, title:false, shadeClose: true, content: $('#jubao') }); } $(".getcommentlist").click(function(){ var _id=$(this).attr("dataid"); var _tid=$(this).attr("datatid"); $("#articlecommentlist"+_id).toggleClass("hide"); var flag=$("#articlecommentlist"+_id).attr("dataflag"); if(flag==1){ flag=0; }else{ flag=1; //加載評(píng)論 loadarticlecommentlist(_id,_tid); } $("#articlecommentlist"+_id).attr("dataflag",flag); }) $(".add-comment-btn").click(function(){ var _id=$(this).attr("dataid"); $(".formcomment"+_id).toggleClass("hide"); }) $(".btn-sendartcomment").click(function(){ var _aid=$(this).attr("dataid"); var _tid=$(this).attr("datatid"); var _content=$.trim($(".commenttext"+_aid).val()); if(_content==''){ alert("評(píng)論內(nèi)容不能為空"); return false; } var touid=$("#btnsendcomment"+_aid).attr("touid"); if(touid==null){ touid=0; } addarticlecomment(_tid,_aid,_content,touid); }) $(".button_agree").click(function(){ var supportobj = $(this); var tid = $(this).attr("id"); $.ajax({ type: "GET", url:"http://m.specialneedsforspecialkids.com/yun/index.php?topic/ajaxhassupport/" + tid, cache: false, success: function(hassupport){ if (hassupport != '1'){ $.ajax({ type: "GET", cache:false, url: "http://m.specialneedsforspecialkids.com/yun/index.php?topic/ajaxaddsupport/" + tid, success: function(comments) { supportobj.find("span").html(comments+"人贊"); } }); }else{ alert("您已經(jīng)贊過(guò)"); } } }); }); function attenquestion(_tid,_rs){ $.ajax({ //提交數(shù)據(jù)的類型 POST GET type:"POST", //提交的網(wǎng)址 url:"http://m.specialneedsforspecialkids.com/yun/favorite/topicadd.html", //提交的數(shù)據(jù) data:{tid:_tid,rs:_rs}, //返回?cái)?shù)據(jù)的格式 datatype: "json",//"xml", "html", "script", "json", "jsonp", "text". //在請(qǐng)求之前調(diào)用的函數(shù) beforeSend:function(){}, //成功返回之后調(diào)用的函數(shù) success:function(data){ var data=eval("("+data+")"); console.log(data) if(data.code==2000){ layer.msg(data.msg,function(){ if(data.rs==1){ //取消收藏 $(".layui-layer-tips").attr("data-tips","收藏文章"); $(".layui-layer-tips").html('<i class="fa fa-heart-o"></i>'); } if(data.rs==0){ //收藏成功 $(".layui-layer-tips").attr("data-tips","已收藏文章"); $(".layui-layer-tips").html('<i class="fa fa-heart"></i>') } }) }else{ layer.msg(data.msg) } } , //調(diào)用執(zhí)行后調(diào)用的函數(shù) complete: function(XMLHttpRequest, textStatus){ postadopt=true; }, //調(diào)用出錯(cuò)執(zhí)行的函數(shù) error: function(){ //請(qǐng)求出錯(cuò)處理 postadopt=false; } }); } </script> <footer> <div id="7nfjzdn" class="layui-container"> <div id="b7hlfb7" class="flex_box_zd"> <div id="nbf5nzd" class="left-footer"> <h6><a href="http://m.specialneedsforspecialkids.com/"><img src="http://m.specialneedsforspecialkids.com/yun/static/theme/ukd//images/logo.png" alt="UCloud (優(yōu)刻得科技股份有限公司)"></a></h6> <p>UCloud (優(yōu)刻得科技股份有限公司)是中立、安全的云計(jì)算服務(wù)平臺(tái),堅(jiān)持中立,不涉足客戶業(yè)務(wù)領(lǐng)域。公司自主研發(fā)IaaS、PaaS、大數(shù)據(jù)流通平臺(tái)、AI服務(wù)平臺(tái)等一系列云計(jì)算產(chǎn)品,并深入了解互聯(lián)網(wǎng)、傳統(tǒng)企業(yè)在不同場(chǎng)景下的業(yè)務(wù)需求,提供公有云、混合云、私有云、專有云在內(nèi)的綜合性行業(yè)解決方案。</p> </div> <div id="5p5nfrf" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務(wù)</h6> <p><a href="http://m.specialneedsforspecialkids.com/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/ucan/onlineclass/">UCan線上公開(kāi)課</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/solutions.html" >行業(yè)解決方案</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/pro-notice/">產(chǎn)品動(dòng)態(tài)</a></p> </li> <li> <h6>友情鏈接</h6> <p><a >GPU算力平臺(tái)</a></p> <p><a >UCloud私有云</a></p> <p><a >SurferCloud</a></p> <p><a >工廠仿真軟件</a></p> <p><a >Pinex</a></p> <p><a >AI繪畫(huà)</a></p> </li> <li> <h6>社區(qū)欄目</h6> <p><a href="http://m.specialneedsforspecialkids.com/yun/column/index.html">專欄文章</a></p> <p><a href="http://m.specialneedsforspecialkids.com/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見(jiàn)問(wèn)題</h6> <p><a href="http://m.specialneedsforspecialkids.com/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/about/news/recent/" >新聞動(dòng)態(tài)</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/about/news/report/">媒體動(dòng)態(tài)</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/cases.html">客戶案例</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/notice/">公告</a></p> </li> <li> <span><img src="https://static.ucloud.cn/7a4b6983f4b94bcb97380adc5d073865.png" alt="優(yōu)刻得"></span> <p>掃掃了解更多</p></div> </div> <div id="5jflfpr" class="copyright">Copyright ? 2012-2023 UCloud 優(yōu)刻得科技股份有限公司<i>|</i><a rel="nofollow" >滬公網(wǎng)安備 31011002000058號(hào)</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號(hào)-3</a><i>|</i> <script type="text/javascript" src="https://gyfk12.kuaishang.cn/bs/ks.j?cI=197688&fI=125915" charset="utf-8"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?290c2650b305fc9fff0dbdcafe48b59d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-DZSMXQ3P9N"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-DZSMXQ3P9N'); </script> <script> (function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?99f50ea166557aed914eb4a66a7a70a4709cbb98a54ecb576877d99556fb4bfc3d72cd14f8a76432df3935ab77ec54f830517b3cb210f7fd334f50ccb772134a"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window) </script></div> </div> </footer> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://m.specialneedsforspecialkids.com/" title="国产xxxx99真实实拍">国产xxxx99真实实拍</a> <div class="friend-links"> <a href="http://m.cp97744.com/">国产一区电影</a> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="hrltp" class="pl_css_ganrao" style="display: none;"><th id="hrltp"></th><form id="hrltp"><output id="hrltp"></output></form><span id="hrltp"><i id="hrltp"></i></span><legend id="hrltp"><sup id="hrltp"></sup></legend><dfn id="hrltp"><dfn id="hrltp"><mark id="hrltp"><span id="hrltp"></span></mark></dfn></dfn><label id="hrltp"><th id="hrltp"><b id="hrltp"><meter id="hrltp"></meter></b></th></label><dl id="hrltp"><i id="hrltp"><listing id="hrltp"><dfn id="hrltp"></dfn></listing></i></dl><nobr id="hrltp"><font id="hrltp"><progress id="hrltp"><acronym id="hrltp"></acronym></progress></font></nobr><pre id="hrltp"><p id="hrltp"></p></pre><acronym id="hrltp"><label id="hrltp"></label></acronym><label id="hrltp"><rp id="hrltp"><font id="hrltp"><meter id="hrltp"></meter></font></rp></label><thead id="hrltp"><label id="hrltp"></label></thead><menuitem id="hrltp"></menuitem><listing id="hrltp"><dfn id="hrltp"></dfn></listing><ruby id="hrltp"><thead id="hrltp"></thead></ruby><video id="hrltp"></video><em id="hrltp"><div id="hrltp"></div></em><span id="hrltp"><i id="hrltp"><listing id="hrltp"><dfn id="hrltp"></dfn></listing></i></span><strike id="hrltp"><strong id="hrltp"><optgroup id="hrltp"><output id="hrltp"></output></optgroup></strong></strike><dfn id="hrltp"><dfn id="hrltp"></dfn></dfn><i id="hrltp"></i><menuitem id="hrltp"></menuitem><thead id="hrltp"></thead><small id="hrltp"><meter id="hrltp"><pre id="hrltp"><p id="hrltp"></p></pre></meter></small><ol id="hrltp"></ol><dfn id="hrltp"><dfn id="hrltp"></dfn></dfn><style id="hrltp"><th id="hrltp"><small id="hrltp"><ins id="hrltp"></ins></small></th></style><rp id="hrltp"></rp><pre id="hrltp"><p id="hrltp"></p></pre><label id="hrltp"><th id="hrltp"></th></label><ins id="hrltp"></ins><em id="hrltp"></em><u id="hrltp"><mark id="hrltp"></mark></u><legend id="hrltp"><label id="hrltp"><u id="hrltp"><rp id="hrltp"></rp></u></label></legend><thead id="hrltp"></thead><style id="hrltp"><nobr id="hrltp"></nobr></style><b id="hrltp"><progress id="hrltp"></progress></b><div id="hrltp"><ol id="hrltp"></ol></div><form id="hrltp"><legend id="hrltp"><dfn id="hrltp"><u id="hrltp"></u></dfn></legend></form><div id="hrltp"><strong id="hrltp"><pre id="hrltp"><listing id="hrltp"></listing></pre></strong></div><legend id="hrltp"></legend><progress id="hrltp"><acronym id="hrltp"><label id="hrltp"><nobr id="hrltp"></nobr></label></acronym></progress><meter id="hrltp"></meter><label id="hrltp"><th id="hrltp"><font id="hrltp"><meter id="hrltp"></meter></font></th></label><label id="hrltp"></label><listing id="hrltp"><dfn id="hrltp"><menuitem id="hrltp"><span id="hrltp"></span></menuitem></dfn></listing><style id="hrltp"><nobr id="hrltp"></nobr></style><strong id="hrltp"><form id="hrltp"><ins id="hrltp"><sub id="hrltp"></sub></ins></form></strong><style id="hrltp"></style><listing id="hrltp"><dfn id="hrltp"><mark id="hrltp"><form id="hrltp"></form></mark></dfn></listing><big id="hrltp"></big><small id="hrltp"></small><menuitem id="hrltp"><ol id="hrltp"><i id="hrltp"><track id="hrltp"></track></i></ol></menuitem><var id="hrltp"></var><sup id="hrltp"><strong id="hrltp"></strong></sup><sub id="hrltp"><div id="hrltp"></div></sub><menuitem id="hrltp"></menuitem><dl id="hrltp"><i id="hrltp"></i></dl><var id="hrltp"></var><sub id="hrltp"><div id="hrltp"><ol id="hrltp"><optgroup id="hrltp"></optgroup></ol></div></sub><form id="hrltp"><thead id="hrltp"><label id="hrltp"><strong id="hrltp"></strong></label></thead></form><form id="hrltp"><legend id="hrltp"><dfn id="hrltp"><strong id="hrltp"></strong></dfn></legend></form><div id="hrltp"></div><var id="hrltp"><form id="hrltp"></form></var><em id="hrltp"><big id="hrltp"></big></em><dl id="hrltp"><i id="hrltp"><listing id="hrltp"><dfn id="hrltp"></dfn></listing></i></dl><dfn id="hrltp"><dfn id="hrltp"><mark id="hrltp"><thead id="hrltp"></thead></mark></dfn></dfn><video id="hrltp"><em id="hrltp"><div id="hrltp"><span id="hrltp"></span></div></em></video><span id="hrltp"></span><progress id="hrltp"><pre id="hrltp"></pre></progress><legend id="hrltp"></legend><track id="hrltp"></track><optgroup id="hrltp"><output id="hrltp"></output></optgroup><th id="hrltp"><b id="hrltp"></b></th><strong id="hrltp"></strong><mark id="hrltp"><span id="hrltp"></span></mark><dl id="hrltp"><i id="hrltp"><track id="hrltp"><dfn id="hrltp"></dfn></track></i></dl><div id="hrltp"></div><small id="hrltp"></small><track id="hrltp"></track><ins id="hrltp"></ins><small id="hrltp"><meter id="hrltp"></meter></small><menuitem id="hrltp"><span id="hrltp"><legend id="hrltp"><dfn id="hrltp"></dfn></legend></span></menuitem><label id="hrltp"><strong id="hrltp"><ruby id="hrltp"><thead id="hrltp"></thead></ruby></strong></label><dl id="hrltp"><i id="hrltp"><track id="hrltp"><tt id="hrltp"></tt></track></i></dl><form id="hrltp"><output id="hrltp"></output></form><label id="hrltp"><th id="hrltp"><font id="hrltp"><ins id="hrltp"></ins></font></th></label><dl id="hrltp"><pre id="hrltp"></pre></dl><legend id="hrltp"></legend><address id="hrltp"><strike id="hrltp"><strong id="hrltp"><optgroup id="hrltp"></optgroup></strong></strike></address><label id="hrltp"></label><p id="hrltp"><var id="hrltp"><form id="hrltp"><output id="hrltp"></output></form></var></p><track id="hrltp"><tt id="hrltp"></tt></track><dfn id="hrltp"><mark id="hrltp"></mark></dfn><meter id="hrltp"><acronym id="hrltp"></acronym></meter><dl id="hrltp"><i id="hrltp"></i></dl><form id="hrltp"><thead id="hrltp"><label id="hrltp"><strong id="hrltp"></strong></label></thead></form><var id="hrltp"><small id="hrltp"></small></var><thead id="hrltp"></thead><dfn id="hrltp"><u id="hrltp"></u></dfn><p id="hrltp"><var id="hrltp"></var></p><big id="hrltp"></big><var id="hrltp"></var><sup id="hrltp"><label id="hrltp"><th id="hrltp"><small id="hrltp"></small></th></label></sup><sup id="hrltp"><strong id="hrltp"><th id="hrltp"><b id="hrltp"></b></th></strong></sup><u id="hrltp"></u><pre id="hrltp"><p id="hrltp"></p></pre><mark id="hrltp"></mark><pre id="hrltp"></pre><form id="hrltp"><output id="hrltp"></output></form><div id="hrltp"><ol id="hrltp"></ol></div><thead id="hrltp"></thead><label id="hrltp"></label><optgroup id="hrltp"><output id="hrltp"><sub id="hrltp"><div id="hrltp"></div></sub></output></optgroup><pre id="hrltp"></pre><strike id="hrltp"><strong id="hrltp"></strong></strike><ruby id="hrltp"><thead id="hrltp"><legend id="hrltp"><label id="hrltp"></label></legend></thead></ruby><em id="hrltp"><big id="hrltp"></big></em><thead id="hrltp"><legend id="hrltp"><label id="hrltp"><strong id="hrltp"></strong></label></legend></thead><u id="hrltp"><ruby id="hrltp"></ruby></u><meter id="hrltp"></meter><video id="hrltp"></video><form id="hrltp"><output id="hrltp"></output></form><dfn id="hrltp"></dfn><em id="hrltp"></em><thead id="hrltp"></thead><small id="hrltp"><meter id="hrltp"><pre id="hrltp"><p id="hrltp"></p></pre></meter></small><sup id="hrltp"></sup><span id="hrltp"></span><legend id="hrltp"><sup id="hrltp"></sup></legend><optgroup id="hrltp"><track id="hrltp"><em id="hrltp"><big id="hrltp"></big></em></track></optgroup><meter id="hrltp"></meter><font id="hrltp"></font><pre id="hrltp"></pre><dfn id="hrltp"><mark id="hrltp"><span id="hrltp"><thead id="hrltp"></thead></span></mark></dfn><mark id="hrltp"></mark><div id="hrltp"></div><label id="hrltp"></label><big id="hrltp"><dl id="hrltp"><i id="hrltp"><listing id="hrltp"></listing></i></dl></big><var id="hrltp"></var><pre id="hrltp"></pre><pre id="hrltp"><track id="hrltp"></track></pre><var id="hrltp"></var><acronym id="hrltp"></acronym><menuitem id="hrltp"><span id="hrltp"><legend id="hrltp"><dfn id="hrltp"></dfn></legend></span></menuitem><track id="hrltp"><tt id="hrltp"></tt></track><sub id="hrltp"></sub><ol id="hrltp"><pre id="hrltp"></pre></ol><dl id="hrltp"><i id="hrltp"><track id="hrltp"><dfn id="hrltp"></dfn></track></i></dl><video id="hrltp"></video></div> <script src="http://m.specialneedsforspecialkids.com/yun/static/theme/ukd/js/common.js"></script> <<script type="text/javascript"> $(".site-seo-depict *,.site-content-answer-body *,.site-body-depict *").css("max-width","100%"); </script> </html>