亚洲中字慕日产2020,大陆极品少妇内射AAAAAA,无码av大香线蕉伊人久久,久久精品国产亚洲av麻豆网站

資訊專欄INFORMATION COLUMN

web前端(3)—— html標(biāo)簽及web頁面結(jié)構(gòu)

番茄西紅柿 / 3301人閱讀

摘要:開始標(biāo)簽和結(jié)束標(biāo)簽之間的就是標(biāo)簽的內(nèi)容??偨Y(jié)屬性跳轉(zhuǎn)標(biāo)簽在和標(biāo)簽之間的文字內(nèi)容是網(wǎng)頁的標(biāo)題信息,它會顯示在瀏覽器標(biāo)簽頁的標(biāo)題欄中。常見的頭部元素有和等標(biāo)簽,頭部標(biāo)簽在下一節(jié)中會有詳細(xì)介紹。

 

 

本節(jié)內(nèi)容簡單介紹下html都有哪些標(biāo)簽

還是百度首頁,查看源代碼看看:

 

 

我把源代碼復(fù)制下來另存為html文件里:

 

注意:網(wǎng)頁文件的后綴都是html或者h(yuǎn)tm

我這用的pycharm編輯器(Python編輯器,也可以編輯web頁面),編輯器有很多種,比如notepad++,webstorm,hbuilder,Visual Studio,sublime text等等的都可以做web編輯器,這個(gè)就根據(jù)各位朋友的愛好來選擇了,安裝都是很簡單的,所以不介紹了

 

HTML

 

好的,我先點(diǎn)這個(gè)按鈕,把層級隱藏一下

 

 

變成這樣:

 

以上這樣的結(jié)構(gòu)就是web頁面的結(jié)構(gòu)了,最前面的是一個(gè)聲明,全名是Document Type HyperText Mark-up Language,表示這是html5規(guī)范的頁面

剩下的就是一個(gè)大的html,像這種,,就是網(wǎng)頁標(biāo)簽:

1. 在HTML中規(guī)定標(biāo)簽使用英文的的尖括號即`<`和`>`包起來,如``、`

`都是標(biāo)簽。 2. HTML中標(biāo)簽**通常**都是成對出現(xiàn)的,分為開始標(biāo)簽和結(jié)束標(biāo)簽,結(jié)束標(biāo)簽比開始標(biāo)簽多了一個(gè)`/`,如`

標(biāo)簽內(nèi)容

`和`
標(biāo)簽內(nèi)容
`。開始標(biāo)簽和結(jié)束標(biāo)簽之間的就是標(biāo)簽的內(nèi)容。 3. 標(biāo)簽之間是可以嵌套的。例如:div標(biāo)簽里面嵌套p標(biāo)簽的話,那么`

`必須放在`
`的前面。 4. HTML標(biāo)簽不區(qū)分大小寫,`

`和`

`是一樣的,但是我們通常建議使用小寫,因?yàn)榇蟛糠殖绦騿T都以小寫為準(zhǔn)。

 

外層用<>包住,并且前開后閉,在要閉合的時(shí)候用包住,完整的就是  ,像這種有前開后閉的就叫雙標(biāo)簽

 

然后  里面有兩個(gè)子集,,head,就是web頁面的頭部,body就是web頁面的身體。有頭有身體,就組成了html,也就是組成web頁面:

 

 

 

head

 那么head里面可以有什么呢?

展開看看:

 

如您所見,有meta,link,title標(biāo)簽。大家看到?jīng)]有,meta沒有后閉標(biāo)簽,只有,像這種就是單標(biāo)簽。

 

元素可提供有關(guān)頁面的元信息(meta-information),比如針對搜索引擎和更新頻度的描述和關(guān)鍵詞

元素可提供有關(guān)頁面的原信息(mata-information),針對搜索引擎和更新頻度的描述和關(guān)鍵詞。

標(biāo)簽位于文檔的頭部,不包含任何內(nèi)容。

提供的信息是用戶不可見的。 meta標(biāo)簽的組成:meta標(biāo)簽共有兩個(gè)屬性,它們分別是http-equiv屬性和name屬性,不同的屬性又有不同的參數(shù)值,這些不同的參數(shù)值就實(shí)現(xiàn)了不同的網(wǎng)頁功能

 

 

常用的meta標(biāo)簽:

 

  1. http-equiv屬性

 

它用來向?yàn)g覽器傳達(dá)一些有用的信息,幫助瀏覽器正確地顯示網(wǎng)頁內(nèi)容,與之對應(yīng)的屬性值為content,content中的內(nèi)容其實(shí)就是各個(gè)參數(shù)的變量值。

 






 

  2.name屬性

 

主要用于頁面的關(guān)鍵字和描述,是寫給搜索引擎看的,關(guān)鍵字可以有多個(gè)用 ‘,’號隔開,與之對應(yīng)的屬性值為content,content中的內(nèi)容主要是便于搜索引擎機(jī)器人查找信息和分類信息用的。

 


 

 

</span></h3> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"><title>標(biāo)簽:在<code><title></code>和<code></title</code>>標(biāo)簽之間的文字內(nèi)容是網(wǎng)頁的標(biāo)題信息,它會顯示在瀏覽器標(biāo)簽頁的標(biāo)題欄中??梢园阉闯墒且粋€(gè)網(wǎng)頁的標(biāo)題。主要用來告訴用戶和搜索引擎這個(gè)網(wǎng)頁的主要內(nèi)容是什么,搜索引擎可以通過網(wǎng)頁標(biāo)題,迅速的判斷出當(dāng)前網(wǎng)頁的主題。這個(gè)就沒什么可以說的了,看兩個(gè)例子你就懂了:</span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"></span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"></span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <h2><span style="font-family: Microsoft YaHei; font-size: 16px;">body</span></h2> <p><span style="font-family: Microsoft YaHei; font-size: 16px;">好接著剛才的百度首頁,展開body標(biāo)簽看看:</span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"></span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;">好的,如同head標(biāo)簽一樣,里面有比head還多的子標(biāo)簽,div,p,i,a,b……。</span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;">這些標(biāo)簽就很常用很重要了,后面詳細(xì)介紹,這里暫且略過</span></p> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> <h2><span style="font-family: Microsoft YaHei; font-size: 16px;">總結(jié):</span></h2> <blockquote> <p><span style="font-family: Microsoft YaHei; font-size: 16px;">首先,<code><!DOCTYPE HTML></code>是文檔聲明,必須寫在HTML文檔的第一行,位于<code><html></code>標(biāo)簽之前,表明該文檔是HTML5文檔。</span></p> <ol> <li><span style="font-family: Microsoft YaHei; font-size: 16px;"><code><html></html></code> 稱為根標(biāo)簽,所有的網(wǎng)頁標(biāo)簽都在<code><html></html></code>中。</span></li> <li><span style="font-family: Microsoft YaHei; font-size: 16px;"><code><head></head></code> 標(biāo)簽用于定義文檔的頭部,它是所有頭部元素的容器。常見的頭部元素有<code><title></code>、<code><script></code>、<code><style></code>、<code><link></code>和<code><meta></code>等標(biāo)簽,頭部標(biāo)簽在下一節(jié)中會有詳細(xì)介紹。</span></li> <li><span style="font-family: Microsoft YaHei; font-size: 16px;">在<code><body></code>和<code></body></code>標(biāo)簽之間的內(nèi)容是網(wǎng)頁的主要內(nèi)容,如<code><h1></code>、<code><p></code>、<code><a></code>、<code><img></code>等網(wǎng)頁內(nèi)容標(biāo)簽,在<code><body></code>標(biāo)簽中的內(nèi)容(圖中淡綠色部分內(nèi)容)最終會在瀏覽器中顯示出來。</span></li> </ol> <p><span style="font-family: Microsoft YaHei; font-size: 16px;">HTML文檔包含了HTML標(biāo)簽及文本內(nèi)容,不同的標(biāo)簽在瀏覽器上會顯示出不同的效果,所以我們需要記住最常見的標(biāo)簽的特性</span></p> </blockquote> <p><span style="font-family: Microsoft YaHei; font-size: 16px;"> </span></p> </div> <div id="dnkpnhlp" class="mt-64 tags-seach" > <div id="dnkpnhlp" class="tags-info"> <a style="width:120px;" title="GPU云服務(wù)器" href="http://www.ezyhdfw.cn/site/product/gpu.html">GPU云服務(wù)器</a> <a style="width:120px;" title="云服務(wù)器" href="http://www.ezyhdfw.cn/site/active/kuaijiesale.html?ytag=seo">云服務(wù)器</a> <a style="width:120px;" title="web前端頁面" href="http://www.ezyhdfw.cn/yun/tag/webqianduanyemian/">web前端頁面</a> <a style="width:120px;" title="web前端頁面工程師" href="http://www.ezyhdfw.cn/yun/tag/webqianduanyemiangongchengshi/">web前端頁面工程師</a> <a style="width:120px;" title="web應(yīng)用防火墻技術(shù)及應(yīng)用" href="http://www.ezyhdfw.cn/yun/tag/webyingyongfanghuoqiangjishujiyingyong/">web應(yīng)用防火墻技術(shù)及應(yīng)用</a> <a style="width:120px;" title="前端web前端" href="http://www.ezyhdfw.cn/yun/tag/qianduanwebqianduan/">前端web前端</a> </div> </div> <div id="dnkpnhlp" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。</p> <p>轉(zhuǎn)載請注明本文地址:http://www.ezyhdfw.cn/yun/1564.html</p> </div> <ul class="pre-next-page"> <li id="dnkpnhlp" class="ellipsis"><a class="hpf" href="http://www.ezyhdfw.cn/yun/1563.html">上一篇:解決ie6中png圖片格式不兼容問題</a></li> <li id="dnkpnhlp" class="ellipsis"><a class="hpf" href="http://www.ezyhdfw.cn/yun/1565.html">下一篇:web前端(2)—— 前端技術(shù)介紹</a></li> </ul> </div> <div id="dnkpnhlp" 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="dnkpnhlp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://www.ezyhdfw.cn/yun/115862.html"><b><em>前端</em>面試題-<em>HTML</em><em>結(jié)構(gòu)</em>語義化</b></a></h2> <p class="ellipsis2 good">摘要:一語義化的背景結(jié)構(gòu)語義化,是近幾年才提出來的,對比之前的結(jié)構(gòu),大多是一堆沒有語義的標(biāo)簽。用的最多的就是,為了改變這種現(xiàn)狀,開發(fā)者們和官方提出了結(jié)構(gòu)語義化的概念,并且在添加了很多語義化標(biāo)簽。 一、HTML語義化的背景 HTML結(jié)構(gòu)語義化,是近幾年才提出來的,對比之前的 HTML 結(jié)構(gòu),大多是一堆沒有語義的標(biāo)簽。用的最多的就是 DIV+CSS,為了改變這種現(xiàn)狀,開發(fā)者們和官方提出了 HTM...</p> <div id="dnkpnhlp" class="com_white-left-info"> <div id="dnkpnhlp" class="com_white-left-infol"> <a href="http://www.ezyhdfw.cn/yun/u-1460.html"><img src="http://www.ezyhdfw.cn/yun/data/avatar/000/00/14/small_000001460.jpg" alt=""><span id="dnkpnhlp" class="layui-hide64">chuyao</span></a> <time datetime="">2019-08-30 14:13</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="dnkpnhlp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://www.ezyhdfw.cn/yun/52042.html"><b><em>前端</em>面試題-<em>HTML</em><em>結(jié)構(gòu)</em>語義化</b></a></h2> <p class="ellipsis2 good">摘要:一語義化的背景結(jié)構(gòu)語義化,是近幾年才提出來的,對比之前的結(jié)構(gòu),大多是一堆沒有語義的標(biāo)簽。用的最多的就是,為了改變這種現(xiàn)狀,開發(fā)者們和官方提出了結(jié)構(gòu)語義化的概念,并且在添加了很多語義化標(biāo)簽。 一、HTML語義化的背景 HTML結(jié)構(gòu)語義化,是近幾年才提出來的,對比之前的 HTML 結(jié)構(gòu),大多是一堆沒有語義的標(biāo)簽。用的最多的就是 DIV+CSS,為了改變這種現(xiàn)狀,開發(fā)者們和官方提出了 HTM...</p> <div id="dnkpnhlp" class="com_white-left-info"> <div id="dnkpnhlp" class="com_white-left-infol"> <a href="http://www.ezyhdfw.cn/yun/u-832.html"><img src="http://www.ezyhdfw.cn/yun/data/avatar/000/00/08/small_000000832.jpg" alt=""><span id="dnkpnhlp" class="layui-hide64">booster</span></a> <time datetime="">2019-08-01 18:43</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="dnkpnhlp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://www.ezyhdfw.cn/yun/94820.html"><b><em>前端</em>體系梳理</b></a></h2> <p class="ellipsis2 good">摘要:交互元素用于與用戶交互的元素元數(shù)據(jù)元素被用于說明其他內(nèi)容的表現(xiàn)或行為,或者在當(dāng)前文檔和其他文檔之間建立聯(lián)系的元素。 一、開篇 很久以前我們對于前端的理解就是開發(fā)web網(wǎng)頁的,并且在PC上的瀏覽器進(jìn)行展示;后來,隨著響應(yīng)式布局和智能手機(jī)的興起,web網(wǎng)頁更多的出現(xiàn)在了移動(dòng)端的瀏覽器中;再后來,隨著技術(shù)的不斷發(fā)展,web頁面逐漸出現(xiàn)在了PC、Android、Iphone的applicati...</p> <div id="dnkpnhlp" class="com_white-left-info"> <div id="dnkpnhlp" class="com_white-left-infol"> <a href="http://www.ezyhdfw.cn/yun/u-647.html"><img src="http://www.ezyhdfw.cn/yun/data/avatar/000/00/06/small_000000647.jpg" alt=""><span id="dnkpnhlp" class="layui-hide64">widuu</span></a> <time datetime="">2019-08-22 17:04</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="dnkpnhlp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://www.ezyhdfw.cn/yun/113236.html"><b><em>前端</em>體系梳理</b></a></h2> <p class="ellipsis2 good">摘要:交互元素用于與用戶交互的元素元數(shù)據(jù)元素被用于說明其他內(nèi)容的表現(xiàn)或行為,或者在當(dāng)前文檔和其他文檔之間建立聯(lián)系的元素。 一、開篇 很久以前我們對于前端的理解就是開發(fā)web網(wǎng)頁的,并且在PC上的瀏覽器進(jìn)行展示;后來,隨著響應(yīng)式布局和智能手機(jī)的興起,web網(wǎng)頁更多的出現(xiàn)在了移動(dòng)端的瀏覽器中;再后來,隨著技術(shù)的不斷發(fā)展,web頁面逐漸出現(xiàn)在了PC、Android、Iphone的applicati...</p> <div id="dnkpnhlp" class="com_white-left-info"> <div id="dnkpnhlp" class="com_white-left-infol"> <a href="http://www.ezyhdfw.cn/yun/u-496.html"><img src="http://www.ezyhdfw.cn/yun/data/avatar/000/00/04/small_000000496.jpg" alt=""><span id="dnkpnhlp" class="layui-hide64">DataPipeline</span></a> <time datetime="">2019-08-29 15:19</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> </ul> </div> <div id="dnkpnhlp" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評論</span></h3> <div id="dnkpnhlp" class="xcp-publish-main flex_box_zd"> <div id="dnkpnhlp" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="dnkpnhlp" class="site-box-content"> <div id="dnkpnhlp" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="dnkpnhlp" class="pages"></ul></div> </div> </div> <div id="dnkpnhlp" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="dnkpnhlp" class=""> <div id="dnkpnhlp" class="com_layuiright-box user-msgbox"> <a href="http://www.ezyhdfw.cn/yun/u-1725.html"><img src="http://www.ezyhdfw.cn/yun/data/avatar/000/00/17/small_000001725.jpg" alt=""></a> <h3><a href="http://www.ezyhdfw.cn/yun/u-1725.html" rel="nofollow">番茄西紅柿</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="dnkpnhlp" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(1725)" id="attenttouser_1725" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="dnkpnhlp" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://www.ezyhdfw.cn/yun/ut-1725.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/130741.html">tensor</a></h3> <p>閱讀 845<span>·</span>2023-04-25 19:43</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125781.html">Windows 下安裝 XGBoost</a></h3> <p>閱讀 4110<span>·</span>2021-11-30 14:52</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125782.html">Hadoop 2.6.0 啟動(dòng)問題 lib/native/libhadoop.so which mi</a></h3> <p>閱讀 3924<span>·</span>2021-11-30 14:52</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125726.html">VmShell:黑五美國VPS,免費(fèi)先開通測試,滿意后付款!支持tiktok美區(qū)</a></h3> <p>閱讀 4026<span>·</span>2021-11-29 11:00</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125727.html">百度智能云:云產(chǎn)品特惠福利,1核2G輕量應(yīng)用服務(wù)器僅48元/年</a></h3> <p>閱讀 3919<span>·</span>2021-11-29 11:00</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125730.html">Linux系統(tǒng)和寶塔面板如何啟用禁ping功能?</a></h3> <p>閱讀 4036<span>·</span>2021-11-29 11:00</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125731.html">301重定向怎么做?301重定向設(shè)置方法有幾種</a></h3> <p>閱讀 3752<span>·</span>2021-11-29 11:00</p></li> <li><h3 class="ellipsis"><a href="http://www.ezyhdfw.cn/yun/125716.html">wordpress網(wǎng)站重定向次數(shù)過多的解決方法</a></h3> <p>閱讀 6599<span>·</span>2021-11-29 11:00</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="dnkpnhlp" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動(dòng)</span></h6> <div id="dnkpnhlp" class="com_adbox"> <div id="dnkpnhlp" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://www.ezyhdfw.cn/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://www.ezyhdfw.cn/yun/data/attach/240625/2rTjEHmi.png" alt="云服務(wù)器"> </a> </div> <div> <a href="http://www.ezyhdfw.cn/site/product/gpu.html" rel="nofollow"> <img src="http://www.ezyhdfw.cn/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務(wù)器"> </a> </div> </div> </div> </div> <!-- banner結(jié)束 --> <div id="dnkpnhlp" class="adhtml"> </div> <script> $(function(){ $.ajax({ type: "GET", url:"http://www.ezyhdfw.cn/yun/ad/getad/1.html", cache: false, success: function(text){ $(".adhtml").html(text); } }); }) </script> </div> </div> </div> </div> </div> </section> <!-- wap拉出按鈕 --> <div id="dnkpnhlp" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="dnkpnhlp" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="dnkpnhlp" id="payread"> <div id="dnkpnhlp" class="layui-form-item">閱讀需要支付1元查看</div> <div id="dnkpnhlp" 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://www.ezyhdfw.cn/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <script src="http://www.ezyhdfw.cn/yun/static/js/neweditor/code/highlight.pack.js" type="text/javascript"></script> <script src="http://www.ezyhdfw.cn/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; //加載評論 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("評論內(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://www.ezyhdfw.cn/yun/index.php?topic/ajaxhassupport/" + tid, cache: false, success: function(hassupport){ if (hassupport != '1'){ $.ajax({ type: "GET", cache:false, url: "http://www.ezyhdfw.cn/yun/index.php?topic/ajaxaddsupport/" + tid, success: function(comments) { supportobj.find("span").html(comments+"人贊"); } }); }else{ alert("您已經(jīng)贊過"); } } }); }); function attenquestion(_tid,_rs){ $.ajax({ //提交數(shù)據(jù)的類型 POST GET type:"POST", //提交的網(wǎng)址 url:"http://www.ezyhdfw.cn/yun/favorite/topicadd.html", //提交的數(shù)據(jù) data:{tid:_tid,rs:_rs}, //返回?cái)?shù)據(jù)的格式 datatype: "json",//"xml", "html", "script", "json", "jsonp", "text". //在請求之前調(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(){ //請求出錯(cuò)處理 postadopt=false; } }); } </script> <footer> <div id="dnkpnhlp" class="layui-container"> <div id="dnkpnhlp" class="flex_box_zd"> <div id="dnkpnhlp" class="left-footer"> <h6><a href="http://www.ezyhdfw.cn/"><img src="http://www.ezyhdfw.cn/yun/static/theme/ukd//images/logo.png" alt="UCloud (優(yōu)刻得科技股份有限公司)"></a></h6> <p>UCloud (優(yōu)刻得科技股份有限公司)是中立、安全的云計(jì)算服務(wù)平臺,堅(jiān)持中立,不涉足客戶業(yè)務(wù)領(lǐng)域。公司自主研發(fā)IaaS、PaaS、大數(shù)據(jù)流通平臺、AI服務(wù)平臺等一系列云計(jì)算產(chǎn)品,并深入了解互聯(lián)網(wǎng)、傳統(tǒng)企業(yè)在不同場景下的業(yè)務(wù)需求,提供公有云、混合云、私有云、專有云在內(nèi)的綜合性行業(yè)解決方案。</p> </div> <div id="dnkpnhlp" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務(wù)</h6> <p><a href="http://www.ezyhdfw.cn/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://www.ezyhdfw.cn/site/ucan/onlineclass/">UCan線上公開課</a></p> <p><a href="http://www.ezyhdfw.cn/site/solutions.html" >行業(yè)解決方案</a></p> <p><a href="http://www.ezyhdfw.cn/site/pro-notice/">產(chǎn)品動(dòng)態(tài)</a></p> </li> <li> <h6>友情鏈接</h6> <p><a >GPU算力平臺</a></p> <p><a >UCloud私有云</a></p> <p><a >SurferCloud</a></p> <p><a >工廠仿真軟件</a></p> <p><a >AI繪畫</a></p> <p><a >Wavespeed AI</a></p> </li> <li> <h6>社區(qū)欄目</h6> <p><a href="http://www.ezyhdfw.cn/yun/column/index.html">專欄文章</a></p> <p><a href="http://www.ezyhdfw.cn/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見問題</h6> <p><a href="http://www.ezyhdfw.cn/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://www.ezyhdfw.cn/site/about/news/recent/" >新聞動(dòng)態(tài)</a></p> <p><a href="http://www.ezyhdfw.cn/site/about/news/report/">媒體動(dòng)態(tài)</a></p> <p><a href="http://www.ezyhdfw.cn/site/cases.html">客戶案例</a></p> <p><a href="http://www.ezyhdfw.cn/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="dnkpnhlp" class="copyright">Copyright ? 2012-2025 UCloud 優(yōu)刻得科技股份有限公司<i>|</i><a rel="nofollow" >滬公網(wǎng)安備 31011002000058號</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號-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.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://www.ezyhdfw.cn/" title="亚洲中字慕日产2020,大陆极品少妇内射AAAAAA,无码av大香线蕉伊人久久,久久精品国产亚洲av麻豆网站 ">亚洲中字慕日产2020,大陆极品少妇内射AAAAAA,无码av大香线蕉伊人久久,久久精品国产亚洲av麻豆网站 </a> <div class="friend-links"> </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="tqthd" class="pl_css_ganrao" style="display: none;"><ruby id="tqthd"><span id="tqthd"></span></ruby><center id="tqthd"><tbody id="tqthd"><acronym id="tqthd"></acronym></tbody></center><tbody id="tqthd"></tbody><tr id="tqthd"></tr><ruby id="tqthd"></ruby><form id="tqthd"><pre id="tqthd"><ul id="tqthd"><rp id="tqthd"></rp></ul></pre></form><abbr id="tqthd"></abbr><legend id="tqthd"></legend><s id="tqthd"></s><ruby id="tqthd"></ruby><abbr id="tqthd"></abbr><address id="tqthd"><sup id="tqthd"><u id="tqthd"><blockquote id="tqthd"></blockquote></u></sup></address><ul id="tqthd"><div id="tqthd"></div></ul><sup id="tqthd"></sup><thead id="tqthd"><code id="tqthd"><output id="tqthd"></output></code></thead><form id="tqthd"></form><form id="tqthd"></form><track id="tqthd"></track><abbr id="tqthd"></abbr><thead id="tqthd"></thead><nobr id="tqthd"><center id="tqthd"><source id="tqthd"></source></center></nobr><i id="tqthd"></i><tfoot id="tqthd"><table id="tqthd"></table></tfoot><tfoot id="tqthd"><strong id="tqthd"><pre id="tqthd"><td id="tqthd"></td></pre></strong></tfoot><xmp id="tqthd"><bdo id="tqthd"></bdo></xmp><acronym id="tqthd"></acronym><acronym id="tqthd"></acronym><output id="tqthd"></output><thead id="tqthd"><pre id="tqthd"><output id="tqthd"></output></pre></thead><strike id="tqthd"><abbr id="tqthd"></abbr></strike><menu id="tqthd"></menu><tt id="tqthd"><thead id="tqthd"><tbody id="tqthd"><acronym id="tqthd"></acronym></tbody></thead></tt><abbr id="tqthd"></abbr><acronym id="tqthd"></acronym><dd id="tqthd"><i id="tqthd"></i></dd><blockquote id="tqthd"><p id="tqthd"><th id="tqthd"><pre id="tqthd"></pre></th></p></blockquote><nobr id="tqthd"></nobr><ol id="tqthd"></ol><var id="tqthd"><b id="tqthd"><wbr id="tqthd"><strong id="tqthd"></strong></wbr></b></var><dd id="tqthd"></dd><div id="tqthd"><var id="tqthd"><button id="tqthd"><span id="tqthd"></span></button></var></div><table id="tqthd"><font id="tqthd"><p id="tqthd"><li id="tqthd"></li></p></font></table><nav id="tqthd"><tt id="tqthd"><div id="tqthd"><bdo id="tqthd"></bdo></div></tt></nav><sub id="tqthd"></sub><td id="tqthd"><label id="tqthd"></label></td><strong id="tqthd"><ruby id="tqthd"></ruby></strong><strike id="tqthd"><nav id="tqthd"><tt id="tqthd"><thead id="tqthd"></thead></tt></nav></strike><ol id="tqthd"><abbr id="tqthd"><samp id="tqthd"><legend id="tqthd"></legend></samp></abbr></ol><blockquote id="tqthd"></blockquote><strike id="tqthd"></strike></div> <script src="http://www.ezyhdfw.cn/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>