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

資訊專欄INFORMATION COLUMN

head 標(biāo)簽里有什么?

darkerXi / 327人閱讀

摘要:標(biāo)簽里有什么每一個(gè)文檔中,都有一個(gè)不可或缺的標(biāo)簽,它作為一個(gè)容器,主要包含了用于描述文檔自身信息元數(shù)據(jù)的標(biāo)簽,這些標(biāo)簽一般不會在頁面中被顯示出來,大多情況下是給瀏覽器和搜索引擎看的。目前我只觀察到淘寶網(wǎng)使用了這個(gè)標(biāo)簽。

head 標(biāo)簽里有什么?

每一個(gè) HTML 文檔中,都有一個(gè)不可或缺的標(biāo)簽: ,它作為一個(gè)容器,主要包含了用于描述 HTML 文檔自身信息(元數(shù)據(jù))的標(biāo)簽,這些標(biāo)簽一般不會在頁面中被顯示出來,大多情況下是給瀏覽器和搜索引擎看的。

可以用在 里面的標(biāo)簽有: </b> , <b><base href="http://m.specialneedsforspecialkids.com/"/></b> , <b><link></b> , <b><style></b> , <b><meta></b> , <b><script></b> , <b><noscript></b> 。</p> <b>元信息標(biāo)簽介紹</b> <b><b><title></b></b> <p>定義文檔的標(biāo)題,顯示在瀏覽器的標(biāo)題欄或標(biāo)簽頁上,一般會完整地概括整個(gè)網(wǎng)頁的內(nèi)容。</p> <b><b><base></b></b> <p>給頁面上所有相對 URL 的提供一個(gè)基礎(chǔ)。一份文檔中只能有一個(gè) <b><base></b> 標(biāo)簽。</p> <p>目前我只觀察到「淘寶網(wǎng)」使用了這個(gè)標(biāo)簽。</p> <b><b><link></b></b> <p>規(guī)定外部資源與當(dāng)前文檔的關(guān)系,常于鏈接樣式表,如下所示:</p> <pre><link rel="stylesheet" href="xxx.css" type="text/css"></pre> <p>當(dāng)然還有很多其他的作用:</p> <p>比如用于 SEO,主要給搜索引擎看的:</p> <pre><link rel="canonical" href="..."></pre> <p>在網(wǎng)站中常有多個(gè) url 指向同一個(gè)頁面的情況,上述標(biāo)簽告知搜索引擎頁面的主 url 是什么,以便搜索引擎保留主要頁面而去除其他重復(fù)頁面。</p> <p>提供 rss 訂閱的:</p> <pre><link rel="alternate" type="application/rss+xml" title="RSS" href="..."></pre> <p>上述標(biāo)簽除搜索引擎可以看懂以外,也能被很多瀏覽器插件識別。</p> <p>表示頁面 icon 的:</p> <pre><link rel="icon" ></pre> <p>多數(shù)瀏覽器會讀取這個(gè) link 的資源并展示在頁面上。</p> <p>對頁面提供預(yù)處理的:</p> <pre></pre> <p>提前對一個(gè)域名做 dns 查詢。強(qiáng)制對域名進(jìn)行預(yù)讀取在有的情況下很有用,。</p> <pre>比如, 在網(wǎng)站的主頁上,強(qiáng)制在整個(gè)網(wǎng)站上對頻繁引用的域名做預(yù)解析處理,即使它們不在主頁本身上使用。雖然主頁的性能可能不受影響,但是會提高站點(diǎn)整體性能。</pre> <b><b><style></b></b> <p>包含文檔的樣式信息。</p> <b><b><meta></b></b> <p>一種通用的元數(shù)據(jù)信息表示標(biāo)簽,一般以鍵值對出現(xiàn),如:<b><meta name="xxx" content="yyy"></b></p> <b>charset 屬性</b> <pre><meta charset="UTF-8"></pre> <p>從 HTML5 開始,上述寫法被推薦使用,用于聲明當(dāng)前文檔所使用的字符編碼,推薦放在 <b><head></b> 中的第一位。</p> <b>http-equiv屬性</b> <pre><meta http-equiv="content-type" content="text/html; charset=UTF-8"></pre> <p>在 HTML4 中,上述代碼用于聲明字符集,但是現(xiàn)在已不被推薦。</p> <p>除了 content-type ,還有其他幾個(gè)值:</p> <p>content-language (已過時(shí))、set-cookie (已過時(shí))、default-style 、refresh 、content-security-policy</p> <p>因?yàn)椴怀S茫跃筒灰灰唤榻B了,也挺容易理解,感興趣可以點(diǎn)擊 這里 了解。</p> <b>name 屬性</b> <p>其實(shí) <meta> 標(biāo)簽可以被自由定義,只要讀取和寫入的雙方約定好 name 和 content 的格式就可以了。來看一個(gè)例子:</p> <pre><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"></pre> <p>上面這種用法并不在 HTML 標(biāo)準(zhǔn)中,但是卻移動(dòng)端開發(fā)的事實(shí)標(biāo)準(zhǔn)。這里來解釋一下 content 中的內(nèi)容:</p> <p>width :頁面寬度,可以是一個(gè)正整數(shù);也可以一個(gè)字符串 "device-width" ,表示跟設(shè)備寬度相等。</p> <p>height :頁面高度,可以是一個(gè)正整數(shù);也可以一個(gè)字符串 "device-height" ,表示跟設(shè)備高度相等。</p> <p>initial-scale :初始縮放比例。</p> <p>minimum-scale : 最小縮放比例。</p> <p>maximum-scale : 最大縮放比例。</p> <p>user-scalable :是否允許用戶縮放。</p> <p>name 屬性的值除了可以是 viewport 之外,還有相當(dāng)多的值:</p> <p>application-name 、author 、description 、generator 、keywords 、referrer 、robots 等。</p> <p>同樣的,就不一一介紹了,感興趣可以點(diǎn)擊 這里 了解。</p> <b><b><script></b></b> <p>用于嵌入或引用可執(zhí)行腳本。來看幾個(gè) script 標(biāo)簽常見的全局屬性:</p> <p>async<p>使瀏覽器使用另一個(gè)線程下載腳本,這時(shí)不會阻塞頁面渲染。當(dāng)腳本下載完成后,瀏覽器會暫停渲染,執(zhí)行腳本,執(zhí)行完畢后繼續(xù)渲染頁面。</p> <p>async 無法保證腳本的執(zhí)行順序,哪個(gè)腳本先下載結(jié)束就會先執(zhí)行。</p> </p> <p>defer<p>同樣會使瀏覽器并行下載腳本,但是下載完畢不會立即執(zhí)行,而是會等到 DOM 加載完成后(即剛剛讀取完 <b></html></b> 標(biāo)簽)再執(zhí)行腳本。</p> <p>defer 可以保證腳本的執(zhí)行順序就是它們在頁面上出現(xiàn)的順序。</p> </p> <p> <p>src</p> <p>定義引用外部腳本的地址,指定此屬性的 script 標(biāo)簽內(nèi)不應(yīng)再有嵌入的腳本。如果腳本文件使用了非英語字符,還應(yīng)該注明字符的編碼。如:</p> <pre><script charset="utf-8" src="https://www.example.com/script.js"></script></pre> </p> <p>type<p>默認(rèn)值是 text/javascript</p> </p> <p>想了解更多關(guān)于 <b><script></b> 標(biāo)簽的詳細(xì)內(nèi)容可以點(diǎn)擊 這里 。</p> <b><b><noscript></b></b> <p>如果頁面上的腳本類型不受支持或者當(dāng)前在瀏覽器中關(guān)閉了腳本,則在此中定義腳本未被執(zhí)行時(shí)的替代內(nèi)容。</p> <b>總結(jié)</b> <p>本文到這里就結(jié)束了,其實(shí)關(guān)于 link 和 meta 標(biāo)簽還有很多沒有介紹到,很多相關(guān)標(biāo)簽都是有特殊的需求,只有在特定情況下才會使用,比如移動(dòng)端開發(fā)就會用許多在 PC 上并不需要的標(biāo)簽。</p> <p>當(dāng)然平時(shí)使用也主要是看需求,就拿我目前來說,只是些許用到過一些與 viewport 和 SEO 相關(guān)的標(biāo)簽。</p> <p>鑒于此我推薦一個(gè)不錯(cuò)的學(xué)習(xí)方法,就是去各大網(wǎng)站查看它們的 head 標(biāo)簽里都有什么,遇到?jīng)]見過的就去搜索一下,熟悉起來會很快。</p> <p>我這邊看過的網(wǎng)站有:「淘寶網(wǎng)」、「阿里巴巴」、「京東」、「網(wǎng)易嚴(yán)選」、「起點(diǎn)中文網(wǎng)」等。</p> <p>(完)</p> </div> <div id="gsa2mw2" class="mt-64 tags-seach" > <div id="qw22u2g" 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="php的head標(biāo)簽" href="http://m.specialneedsforspecialkids.com/yun/tag/phpdeheadbiaoqian/">php的head標(biāo)簽</a> <a style="width:120px;" title="jsp head什么" href="http://m.specialneedsforspecialkids.com/yun/tag/jsp headshime/">jsp head什么</a> <a style="width:120px;" title="idc機(jī)房里有什么" href="http://m.specialneedsforspecialkids.com/yun/tag/idcjifangliyoushime/">idc機(jī)房里有什么</a> <a style="width:120px;" title="服務(wù)器機(jī)柜里有什么" href="http://m.specialneedsforspecialkids.com/yun/tag/fuwuqijiguiliyoushime/">服務(wù)器機(jī)柜里有什么</a> </div> </div> <div id="eksyceu" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。</p> <p>轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/102757.html</p> </div> <ul class="pre-next-page"> <li id="y2uoi2y" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/102756.html">上一篇:從迭代器模式到迭代協(xié)議</a></li> <li id="ouyew00" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/102758.html">下一篇:淺談JS的淺拷貝和深拷貝(遞歸和樹遍歷)</a></li> </ul> </div> <div id="2q0o0a2" 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="ikouwy0" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/53897.html"><b><em>head</em> <em>標(biāo)簽</em><em>里有</em><em>什么</em>?</b></a></h2> <p class="ellipsis2 good">摘要:標(biāo)簽里有什么每一個(gè)文檔中,都有一個(gè)不可或缺的標(biāo)簽,它作為一個(gè)容器,主要包含了用于描述文檔自身信息元數(shù)據(jù)的標(biāo)簽,這些標(biāo)簽一般不會在頁面中被顯示出來,大多情況下是給瀏覽器和搜索引擎看的。目前我只觀察到淘寶網(wǎng)使用了這個(gè)標(biāo)簽。 head 標(biāo)簽里有什么? 每一個(gè) HTML 文檔中,都有一個(gè)不可或缺的標(biāo)簽: ,它作為一個(gè)容器,主要包含了用于描述 HTML 文檔自身信息(元數(shù)據(jù))的標(biāo)簽,這些標(biāo)簽一般...</p> <div id="aouyiw0" class="com_white-left-info"> <div id="22mo0s0" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1501.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/15/small_000001501.jpg" alt=""><span id="2i02wym" class="layui-hide64">dcr309duan</span></a> <time datetime="">2019-08-02 14:34</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="w000uik" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/66427.html"><b>java第三方包學(xué)習(xí)之jsoup</b></a></h2> <p class="ellipsis2 good">摘要:下面隆重介紹簡介是一個(gè)解析的第三方庫,它提供了一套非常方便的,可使用,以及類的操作方法來取出和操作數(shù)據(jù)。一個(gè)文檔的對象模型文檔由多個(gè)和組成其繼承結(jié)構(gòu)如下繼承繼承繼承一個(gè)包含一個(gè)子節(jié)點(diǎn)集合,并擁有一個(gè)父。 前言 使用python寫爬蟲的人,應(yīng)該都聽過beautifulsoup4這個(gè)包,用來它來解析網(wǎng)頁甚是方便。那么在java里有沒有類似的包呢?當(dāng)然有啦!而且也非常好用。下面隆重介紹jso...</p> <div id="myqks20" class="com_white-left-info"> <div id="wq0eykm" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-767.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/07/small_000000767.jpg" alt=""><span id="ymqycsi" class="layui-hide64">dackel</span></a> <time datetime="">2019-08-14 17:06</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="c2imsuw" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/79775.html"><b>閱讀sea.js源碼小結(jié)</b></a></h2> <p class="ellipsis2 good">摘要:依賴信息是一個(gè)數(shù)組,比如上面的依賴數(shù)組是源碼如下是利用正則解析依賴的一個(gè)函數(shù)時(shí)間出發(fā)函數(shù)主要看這個(gè)部分注釋是防止拷貝該時(shí)間的回調(diào)函數(shù),防止修改,困惑了一下。對的賦值需要同步執(zhí)行,不能放在回調(diào)函數(shù)里。 sea.js想解決的問題 惱人的命名沖突 煩瑣的文件依賴 對應(yīng)帶來的好處 Sea.js 帶來的兩大好處: 通過 exports 暴露接口。這意味著不需要命名空間了,更不需要全局變量。...</p> <div id="guwyyii" class="com_white-left-info"> <div id="wmem0si" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-174.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/01/small_000000174.jpg" alt=""><span id="omau0mm" class="layui-hide64">chavesgu</span></a> <time datetime="">2019-08-19 18:37</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="2msuyk0" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/80529.html"><b>移動(dòng)端開發(fā)知識小結(jié)</b></a></h2> <p class="ellipsis2 good">摘要:標(biāo)簽相關(guān)能優(yōu)化移動(dòng)瀏覽器的顯示。會導(dǎo)致添加到主屏后以全屏模式打開頁面時(shí)出現(xiàn)黑邊如果不是響應(yīng)式網(wǎng)站,不要使用或者禁用縮放。這一對事件可以用來檢測元素上的單擊和雙擊。 meta標(biāo)簽相關(guān) viewport:能優(yōu)化移動(dòng)瀏覽器的顯示。 如果不是響應(yīng)式網(wǎng)站,不要使用initial-scale或者禁用縮放。適配 iPhone 6 和 iPhone 6plus 則需要寫: 大部分 4.7~...</p> <div id="wyoimoe" class="com_white-left-info"> <div id="0keum20" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1532.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/15/small_000001532.jpg" alt=""><span id="wkqek2e" class="layui-hide64">Freeman</span></a> <time datetime="">2019-08-20 11:21</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="guioqa2" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評論</span></h3> <div id="qsiw2wy" class="xcp-publish-main flex_box_zd"> <div id="csk2wwm" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="wwosugs" class="site-box-content"> <div id="euyqk0k" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="ykci02q" class="pages"></ul></div> </div> </div> <div id="iwa2gsg" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="2ga0euw" class=""> <div id="2yogmym" class="com_layuiright-box user-msgbox"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1092.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/10/small_000001092.jpg" alt=""></a> <h3><a href="http://m.specialneedsforspecialkids.com/yun/u-1092.html" rel="nofollow">darkerXi</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="s0aqki0" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(1092)" id="attenttouser_1092" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="aoic2m0" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://m.specialneedsforspecialkids.com/yun/ut-1092.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/124144.html">Hostinger黑五適合外貿(mào)建站虛擬主機(jī) 低至80%+</a></h3> <p>閱讀 833<span>·</span>2021-11-22 11:59</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/123624.html">思維導(dǎo)圖整理大廠面試高頻數(shù)組24: 合并兩個(gè)有序數(shù)組的兩種雙指針?biāo)枷? 力扣88</a></h3> <p>閱讀 3251<span>·</span>2021-11-17 09:33</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/121488.html">stm32 高效串口收發(fā)</a></h3> <p>閱讀 2320<span>·</span>2021-09-29 09:34</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/120449.html">云主機(jī)都是什么系統(tǒng)-云主機(jī)是什么?</a></h3> <p>閱讀 1949<span>·</span>2021-09-22 15:25</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/117317.html">使用webpack打包多頁jquery項(xiàng)目</a></h3> <p>閱讀 1967<span>·</span>2019-08-30 15:55</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/117143.html">移動(dòng)端適配之二:visual viewport、layout viewport和ideal view</a></h3> <p>閱讀 1330<span>·</span>2019-08-30 15:55</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/116662.html">從觀麥前端框架的角度看css</a></h3> <p>閱讀 540<span>·</span>2019-08-30 15:53</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/112800.html">小聊BFC</a></h3> <p>閱讀 3353<span>·</span>2019-08-29 13:55</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="2yeummc" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動(dòng)</span></h6> <div id="aa022s2" class="com_adbox"> <div id="ymeymya" 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="k2g0kya" 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="kimiwk2" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="s0ye0e2" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="ayo2oaa" id="payread"> <div id="yyq00iw" class="layui-form-item">閱讀需要支付1元查看</div> <div id="iiagcuw" 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; //加載評論 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://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)贊過"); } } }); }); 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". //在請求之前調(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="2cuycqg" class="layui-container"> <div id="a2imuww" class="flex_box_zd"> <div id="yogwaca" 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ù)平臺,堅(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="eq2iqqs" 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線上公開課</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算力平臺</a></p> <p><a >UCloud私有云</a></p> <p><a >SurferCloud</a></p> <p><a >工廠仿真軟件</a></p> <p><a >Pinex</a></p> <p><a >AI繪畫</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>常見問題</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="i2qi2kk" class="copyright">Copyright ? 2012-2023 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.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="gaoyo" class="pl_css_ganrao" style="display: none;"><pre id="gaoyo"><blockquote id="gaoyo"><tfoot id="gaoyo"></tfoot></blockquote></pre><tbody id="gaoyo"></tbody><pre id="gaoyo"><blockquote id="gaoyo"><tfoot id="gaoyo"></tfoot></blockquote></pre><object id="gaoyo"></object><acronym id="gaoyo"></acronym><tbody id="gaoyo"></tbody><option id="gaoyo"><samp id="gaoyo"><tr id="gaoyo"></tr></samp></option><nav id="gaoyo"></nav><center id="gaoyo"></center><blockquote id="gaoyo"><strike id="gaoyo"><menu id="gaoyo"></menu></strike></blockquote><source id="gaoyo"><code id="gaoyo"><noframes id="gaoyo"></noframes></code></source><strong id="gaoyo"></strong><fieldset id="gaoyo"></fieldset><noscript id="gaoyo"><em id="gaoyo"><blockquote id="gaoyo"></blockquote></em></noscript><strong id="gaoyo"></strong><center id="gaoyo"></center><abbr id="gaoyo"></abbr><blockquote id="gaoyo"></blockquote><th id="gaoyo"></th><dfn id="gaoyo"><source id="gaoyo"><strong id="gaoyo"></strong></source></dfn><delect id="gaoyo"></delect><noframes id="gaoyo"></noframes><table id="gaoyo"></table><menu id="gaoyo"><tbody id="gaoyo"><pre id="gaoyo"></pre></tbody></menu><sup id="gaoyo"></sup><ul id="gaoyo"><dfn id="gaoyo"><rt id="gaoyo"></rt></dfn></ul><td id="gaoyo"></td><code id="gaoyo"><em id="gaoyo"><del id="gaoyo"></del></em></code><strike id="gaoyo"><input id="gaoyo"><tbody id="gaoyo"></tbody></input></strike><strike id="gaoyo"><input id="gaoyo"><tbody id="gaoyo"></tbody></input></strike><noframes id="gaoyo"></noframes><dl id="gaoyo"><optgroup id="gaoyo"><ul id="gaoyo"></ul></optgroup></dl><nav id="gaoyo"></nav><tbody id="gaoyo"></tbody><td id="gaoyo"></td><th id="gaoyo"></th><ul id="gaoyo"><sup id="gaoyo"><rt id="gaoyo"></rt></sup></ul><dl id="gaoyo"></dl><th id="gaoyo"><object id="gaoyo"><li id="gaoyo"></li></object></th><li id="gaoyo"><button id="gaoyo"><delect id="gaoyo"></delect></button></li><table id="gaoyo"></table><blockquote id="gaoyo"></blockquote><noframes id="gaoyo"></noframes><bdo id="gaoyo"><option id="gaoyo"><delect id="gaoyo"></delect></option></bdo><small id="gaoyo"></small><abbr id="gaoyo"></abbr><del id="gaoyo"></del><rt id="gaoyo"></rt><dl id="gaoyo"></dl><dd id="gaoyo"></dd><td id="gaoyo"></td><optgroup id="gaoyo"></optgroup><tbody id="gaoyo"></tbody><nav id="gaoyo"></nav><dfn id="gaoyo"></dfn><ul id="gaoyo"><sup id="gaoyo"><center id="gaoyo"></center></sup></ul><tr id="gaoyo"></tr><ul id="gaoyo"></ul><abbr id="gaoyo"></abbr><delect id="gaoyo"></delect><th id="gaoyo"><object id="gaoyo"><li id="gaoyo"></li></object></th><center id="gaoyo"><dd id="gaoyo"><th id="gaoyo"></th></dd></center><tfoot id="gaoyo"></tfoot><abbr id="gaoyo"></abbr><menu id="gaoyo"><noscript id="gaoyo"><acronym id="gaoyo"></acronym></noscript></menu><bdo id="gaoyo"></bdo><sup id="gaoyo"><source id="gaoyo"><dl id="gaoyo"></dl></source></sup><cite id="gaoyo"></cite><fieldset id="gaoyo"></fieldset><tr id="gaoyo"></tr><tbody id="gaoyo"></tbody><abbr id="gaoyo"><center id="gaoyo"><dd id="gaoyo"></dd></center></abbr><optgroup id="gaoyo"><abbr id="gaoyo"><sup id="gaoyo"></sup></abbr></optgroup><strong id="gaoyo"></strong><sup id="gaoyo"><dd id="gaoyo"><dl id="gaoyo"></dl></dd></sup><strike id="gaoyo"><input id="gaoyo"><tbody id="gaoyo"></tbody></input></strike><ul id="gaoyo"><dfn id="gaoyo"><source id="gaoyo"></source></dfn></ul><dfn id="gaoyo"><source id="gaoyo"><code id="gaoyo"></code></source></dfn><s id="gaoyo"><bdo id="gaoyo"><abbr id="gaoyo"></abbr></bdo></s><tbody id="gaoyo"></tbody><bdo id="gaoyo"></bdo><dd id="gaoyo"><dl id="gaoyo"><nav id="gaoyo"></nav></dl></dd><code id="gaoyo"><noframes id="gaoyo"><abbr id="gaoyo"></abbr></noframes></code><s id="gaoyo"><bdo id="gaoyo"><abbr id="gaoyo"></abbr></bdo></s><rt id="gaoyo"></rt><noframes id="gaoyo"></noframes><small id="gaoyo"><button id="gaoyo"><samp id="gaoyo"></samp></button></small><samp id="gaoyo"><th id="gaoyo"><s id="gaoyo"></s></th></samp><table id="gaoyo"></table><sup id="gaoyo"></sup><cite id="gaoyo"></cite><strong id="gaoyo"></strong><delect id="gaoyo"></delect><cite id="gaoyo"></cite><blockquote id="gaoyo"></blockquote><th id="gaoyo"><object id="gaoyo"><bdo id="gaoyo"></bdo></object></th><em id="gaoyo"></em><pre id="gaoyo"><xmp id="gaoyo"><tfoot id="gaoyo"></tfoot></xmp></pre><li id="gaoyo"></li><cite id="gaoyo"></cite><em id="gaoyo"><del id="gaoyo"><tfoot id="gaoyo"></tfoot></del></em><li id="gaoyo"></li><center id="gaoyo"></center><del id="gaoyo"></del><cite id="gaoyo"></cite><center id="gaoyo"></center><del id="gaoyo"></del><code id="gaoyo"><pre id="gaoyo"><blockquote id="gaoyo"></blockquote></pre></code><li id="gaoyo"></li><nav id="gaoyo"><abbr id="gaoyo"><sup id="gaoyo"></sup></abbr></nav><tbody id="gaoyo"><pre id="gaoyo"><blockquote id="gaoyo"></blockquote></pre></tbody><menu id="gaoyo"><kbd id="gaoyo"><pre id="gaoyo"></pre></kbd></menu><dfn id="gaoyo"><rt id="gaoyo"><code id="gaoyo"></code></rt></dfn><abbr id="gaoyo"></abbr><samp id="gaoyo"><th id="gaoyo"><object id="gaoyo"></object></th></samp><input id="gaoyo"></input><center id="gaoyo"></center><tbody id="gaoyo"></tbody><del id="gaoyo"></del><del id="gaoyo"></del><abbr id="gaoyo"></abbr><optgroup id="gaoyo"></optgroup><code id="gaoyo"><pre id="gaoyo"><blockquote id="gaoyo"></blockquote></pre></code><fieldset id="gaoyo"></fieldset><tr id="gaoyo"></tr><tbody id="gaoyo"></tbody><center id="gaoyo"></center><code id="gaoyo"></code><td id="gaoyo"></td><ul id="gaoyo"></ul><code id="gaoyo"><em id="gaoyo"><del id="gaoyo"></del></em></code><button id="gaoyo"></button><samp id="gaoyo"><tbody id="gaoyo"><object id="gaoyo"></object></tbody></samp><code id="gaoyo"></code><tr id="gaoyo"></tr><tr id="gaoyo"><wbr id="gaoyo"><bdo id="gaoyo"></bdo></wbr></tr><blockquote id="gaoyo"></blockquote><del id="gaoyo"></del><strong id="gaoyo"></strong><rt id="gaoyo"></rt><cite id="gaoyo"></cite><del id="gaoyo"></del><input id="gaoyo"></input><noscript id="gaoyo"></noscript><tr id="gaoyo"></tr><code id="gaoyo"></code><ul id="gaoyo"></ul><tbody id="gaoyo"></tbody><tfoot id="gaoyo"></tfoot><abbr id="gaoyo"></abbr></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>