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

資訊專欄INFORMATION COLUMN

html基礎(chǔ)用法(上)

BlackHole1 / 592人閱讀

摘要:超文本標(biāo)記語(yǔ)言的結(jié)構(gòu)包括頭部分,和主體部分,期中頭部提供關(guān)于網(wǎng)頁(yè)的信息,主體部分提供網(wǎng)頁(yè)的具體內(nèi)容。超文本標(biāo)記語(yǔ)言是標(biāo)準(zhǔn)通用語(yǔ)言下的一個(gè)應(yīng)用,也是一種規(guī)范,一種標(biāo)準(zhǔn),它通過(guò)標(biāo)記符號(hào)來(lái)標(biāo)記要顯示的網(wǎng)頁(yè)中的各個(gè)部分。

html的定義:

html超文本標(biāo)記語(yǔ)言,標(biāo)準(zhǔn)通用標(biāo)記語(yǔ)言下的一個(gè)應(yīng)用。

“超文本”就是指頁(yè)面內(nèi)可以包含圖片,鏈接,甚至音樂,程序等非文字語(yǔ)言。

超文本標(biāo)記語(yǔ)言的結(jié)構(gòu)包括“頭”部分(head),和“主體”部分(body),期中“頭”部提供關(guān)于網(wǎng)頁(yè)的信息,“主體”部分提供網(wǎng)頁(yè)的具體內(nèi)容。

超文本標(biāo)記語(yǔ)言是標(biāo)準(zhǔn)通用語(yǔ)言下的一個(gè)應(yīng)用,也是一種規(guī)范,一種標(biāo)準(zhǔn),它通過(guò)標(biāo)記符號(hào)來(lái)標(biāo)記要顯示的網(wǎng)頁(yè)中的各個(gè)部分。網(wǎng)頁(yè)文件本身是一種文本文件,通過(guò)在文本文件中添加標(biāo)記符,可以告訴瀏覽器如何顯示其中的內(nèi)容(如:文字如何處理,畫面如何安排,圖片如何顯示等)。瀏覽器按順序閱讀網(wǎng)頁(yè)文件,然后根據(jù)標(biāo)記符解釋和顯示其標(biāo)記的內(nèi)容,對(duì)書寫出錯(cuò)的標(biāo)記將不指出其錯(cuò)誤,且不停止其解釋執(zhí)行過(guò)程,編制者只能通過(guò)顯示效果來(lái)分析出錯(cuò)原因和出錯(cuò)部位。但需要注意的是,對(duì)于不同的瀏覽器,對(duì)同一標(biāo)記符可能會(huì)有不完全相同的解釋,因而可能會(huì)有不同的顯示效果。

html的基本結(jié)構(gòu):

1 <html>
2          <head>
3                   <meta charset="utf-8">
4                   <title>title>
5          head>
6          <body>
7          body>
8 html>

從上面可以看的,第一個(gè)是告訴瀏覽器這是html文檔的開始,然后最后一個(gè)是告訴瀏覽器這是html的終止。標(biāo)簽? 之間的文本是頭部信息,</p> <p>之間的文本是文檔標(biāo)題,會(huì)顯示在瀏覽器窗口的標(biāo)題欄。<meta charset="utf-8">是設(shè)置網(wǎng)頁(yè)編碼的語(yǔ)句,讓瀏覽器讀取到本編碼屬于utf-8。<body>之間的是文本的正文。</p> <p><span style="font-size: 14pt;">html的標(biāo)簽元素:</span></p> <pre><span style="color: #008080;"> 1</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 2</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 3</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">meta </span><span style="color: #ff0000;">charset</span><span style="color: #0000ff;">="utf-8"</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 4</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 5</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 6</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 7</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">ul type="disc"</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 8</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span>這是無(wú)需列表<span style="color: #0000ff;"></</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 9</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span>這是無(wú)序列表<span style="color: #0000ff;"></</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span> <span style="color: #008080;">10</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span>這是無(wú)序列表<span style="color: #0000ff;"></</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span> <span style="color: #008080;">11</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">ul</span><span style="color: #0000ff;">></span> <span style="color: #008080;">12</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">ol type="a" start="1"</span><span style="color: #0000ff;">></span> <span style="color: #008080;">13</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span>這是有序列表<span style="color: #0000ff;"></</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span> <span style="color: #008080;">14</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span>這是有序列表<span style="color: #0000ff;"></</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span> <span style="color: #008080;">15</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span>這是有序列表<span style="color: #0000ff;"></</span><span style="color: #800000;">li</span><span style="color: #0000ff;">></span> <span style="color: #008080;">16</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">ol</span><span style="color: #0000ff;">></span> <span style="color: #008080;">17</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dl</span><span style="color: #0000ff;">></span> <span style="color: #008080;">18</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dt</span><span style="color: #0000ff;">></span>標(biāo)題一<span style="color: #0000ff;"></</span><span style="color: #800000;">dt</span><span style="color: #0000ff;">></span> <span style="color: #008080;">19</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span>123<span style="color: #0000ff;"></</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span> <span style="color: #008080;">20</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span>321<span style="color: #0000ff;"></</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span> <span style="color: #008080;">21</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dt</span><span style="color: #0000ff;">></span>標(biāo)題二<span style="color: #0000ff;"></</span><span style="color: #800000;">dt</span><span style="color: #0000ff;">></span> <span style="color: #008080;">22</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span>344<span style="color: #0000ff;"></</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span> <span style="color: #008080;">23</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span>455<span style="color: #0000ff;"></</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span> <span style="color: #008080;">24</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dt</span><span style="color: #0000ff;">></span>標(biāo)題三<span style="color: #0000ff;"></</span><span style="color: #800000;">dt</span><span style="color: #0000ff;">></span> <span style="color: #008080;">25</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span>676<span style="color: #0000ff;"></</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span> <span style="color: #008080;">26</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span>665<span style="color: #0000ff;"></</span><span style="color: #800000;">dd</span><span style="color: #0000ff;">></span> <span style="color: #008080;">27</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">dl</span><span style="color: #0000ff;">></span> <span style="color: #008080;">28</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>好好學(xué)習(xí)天天向上!<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>好好學(xué)習(xí)天天向上!<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>好好學(xué)習(xí)天天向上<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">29</span> 好好學(xué)習(xí)天天向上!<span style="color: #0000ff;"><</span><span style="color: #800000;">br </span><span style="color: #0000ff;">/></span>好好學(xué)習(xí)天天向上!<span style="color: #0000ff;"><</span><span style="color: #800000;">br </span><span style="color: #0000ff;">/></span>好好學(xué)習(xí)天天向上!<span style="color: #0000ff;"><</span><span style="color: #800000;">br</span><span style="color: #0000ff;">/></span> <span style="color: #008080;">30</span> <span style="color: #008080;">31</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;">32</span> <span style="color: #008080;">33</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span></pre> <p>?<ul>在html中表示的是無(wú)序列表,其中屬性type有屬性值:disc(列表前的符號(hào):實(shí)心圓點(diǎn))circle(列表前的符號(hào):符號(hào)為空心圓)square(列表前的符號(hào):符號(hào)為方形)。</p> <p><ol>在html中表示的是有序列表,其中屬性type有屬性值:1,a,A,i,l(用來(lái)設(shè)置項(xiàng)目前面的標(biāo)記),屬性start屬性值是:數(shù)值(排序的起點(diǎn)數(shù)值)。</p> <p><dl>在html中表示的是定義列表。</p> <p><br />是換行符。</p> <p><p>標(biāo)簽是用來(lái)定義一個(gè)段落,也可以用來(lái)?yè)Q行。</p> <p><span style="font-size: 14pt;">超鏈接</span><span style="color: #008080;">?:</span></p> <pre><em id="__mceDel"><em id="__mceDel"><span style="color: #008080;"> 1?<html></span> <br /> <head> <br /><span style="color: #0000ff;"> <</span><span style="color: #800000;">meta </span><span style="color: #ff0000;">charset</span><span style="color: #0000ff;">="utf-8"</span> <span style="color: #0000ff;">/></span> <span style="color: #008080;"> 4</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span>超鏈接<span style="color: #0000ff;"></</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 5</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 6</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 7</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">a </span><span style="color: #ff0000;">href</span><span style="color: #0000ff;">="http://www.baidu,com"</span><span style="color: #ff0000;"> target</span><span style="color: #0000ff;">="_blank"</span><span style="color: #0000ff;">></span>百度一下<span style="color: #0000ff;"></</span><span style="color: #800000;">a</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 8</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">a </span><span style="color: #ff0000;">href</span><span style="color: #0000ff;">="http://www.jd.com"</span><span style="color: #ff0000;"> target</span><span style="color: #0000ff;">="_self"</span><span style="color: #0000ff;">></span>到京東<span style="color: #0000ff;"></</span><span style="color: #800000;">a</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 9</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">a </span><span style="color: #ff0000;">href</span><span style="color: #0000ff;">="#target"</span><span style="color: #0000ff;">></span>點(diǎn)我跳到指定的位置<span style="color: #0000ff;"></</span><span style="color: #800000;">a</span><span style="color: #0000ff;">></span> <span style="color: #008080;">10</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">11</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">12</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">13</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">14</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">hr </span><span style="color: #ff0000;">width</span><span style="color: #0000ff;">="500"</span><span style="color: #ff0000;"> color</span><span style="color: #0000ff;">="red"</span><span style="color: #ff0000;"> size</span><span style="color: #0000ff;">="5"</span><span style="color: #ff0000;"> align</span><span style="color: #0000ff;">="center"</span><span style="color: #0000ff;">><br /> <a name="target">跳到這里來(lái)!</a><br /></span> <span style="color: #008080;">15</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">16</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">17</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>學(xué)習(xí)編程沒有捷徑<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #008080;">18</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;">19</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span></em></em></pre> <p>定義超鏈接<a href="URL"></a></p> <p>a標(biāo)簽用來(lái)定義一條超鏈接,其中要有的是href屬性,href的作用是指明超鏈接要鏈接到的網(wǎng)址。除了href屬性,還有title屬性表示連接的提示信息。target屬性表示鏈接的打開方式,即當(dāng)點(diǎn)擊了鏈接,選擇是在另一個(gè)頁(yè)面打開還是在本頁(yè)面打開。其屬性值包括_blank(新的空白頁(yè)),_self(當(dāng)前頁(yè)),_top(當(dāng)前頁(yè))</p> <p><a href="#target" _blank>百度一下</a> href 的值可以是外部鏈接,也可以是內(nèi)部文件,如***.html</p> <p>錨點(diǎn):有時(shí)候我們?cè)跒g覽網(wǎng)頁(yè)會(huì)發(fā)現(xiàn),有些網(wǎng)頁(yè)比較人性化,會(huì)有點(diǎn)擊返回的按鈕。這樣的效果其實(shí)用錨點(diǎn)標(biāo)簽就能做到。錨點(diǎn)就是點(diǎn)擊使用戶跳到文檔的某個(gè)部分。上面的:</p> <p><a href="#target">帶你我跳到指定位置</a></p> <p><a name="target" >調(diào)到這</a></p> <p>align.可以對(duì)段落進(jìn)行設(shè)置。屬性align的值包括left(左對(duì)齊),center(居中),right(右對(duì)齊)。</p> <p><span style="font-size: 14pt;">img標(biāo)簽:</span></p> <p>?</p> <pre><span style="color: #008080;">1</span> 1 <span style="color: #0000ff;"><</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span> <span style="color: #008080;">2</span> 2 <span style="color: #0000ff;"><</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;">3</span> 3 <span style="color: #0000ff;"><</span><span style="color: #800000;">meta </span><span style="color: #ff0000;">charset</span><span style="color: #0000ff;">="utf-8"</span> <span style="color: #0000ff;">/></span> <span style="color: #008080;">4</span> 4 <span style="color: #0000ff;"><</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span>坂井泉水真美!<span style="color: #0000ff;"></</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span> <span style="color: #008080;">5</span> 5 <span style="color: #0000ff;"></</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;">6</span> 6 <span style="color: #0000ff;"><</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;">7</span> 7 <span style="color: #0000ff;"><</span><span style="color: #800000;">img </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="bjqs.jpg"</span><span style="color: #ff0000;"> width</span><span style="color: #0000ff;">="500"</span><span style="color: #ff0000;"> height</span><span style="color: #0000ff;">="500"</span><span style="color: #ff0000;"> title</span><span style="color: #0000ff;">="女神啊!"</span><span style="color: #ff0000;"> alt</span><span style="color: #0000ff;">="圖片損壞"</span> <span style="color: #0000ff;">/></span> <span style="color: #008080;">8</span> 8 <span style="color: #0000ff;"></</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;">9</span> 9 <span style="color: #0000ff;"></</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span></pre> <p>?</p> <p>屬性:src,屬性值:url,說(shuō)明:圖像資源的地址</p> <p>屬性:width,屬性值:像素(px),說(shuō)明:圖像寬度</p> <p>屬性:height,屬性值:像素(px),說(shuō)明:圖像高度</p> <p>屬性:alt,屬性值:替代文字,說(shuō)明:圖像的替代文字</p> <p></p> <p>標(biāo)題:</p> <pre><span style="color: #008080;"> 1</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 2</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 3</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">meta </span><span style="color: #ff0000;">charset</span><span style="color: #0000ff;">="utf-8"</span> <span style="color: #0000ff;">/></span> <span style="color: #008080;"> 4</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span>標(biāo)題<span style="color: #0000ff;"></</span><span style="color: #800000;">title</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 5</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">head</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 6</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 7</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">h1</span><span style="color: #0000ff;">></span>標(biāo)題一<span style="color: #0000ff;"></</span><span style="color: #800000;">h1</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 8</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">h2</span><span style="color: #0000ff;">></span>標(biāo)題二<span style="color: #0000ff;"></</span><span style="color: #800000;">h2</span><span style="color: #0000ff;">></span> <span style="color: #008080;"> 9</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">h3</span><span style="color: #0000ff;">></span>標(biāo)題三<span style="color: #0000ff;"></</span><span style="color: #800000;">h3</span><span style="color: #0000ff;">></span> <span style="color: #008080;">10</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">h4</span><span style="color: #0000ff;">></span>標(biāo)題四<span style="color: #0000ff;"></</span><span style="color: #800000;">h4</span><span style="color: #0000ff;">></span> <span style="color: #008080;">11</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">h5</span><span style="color: #0000ff;">></span>標(biāo)題五<span style="color: #0000ff;"></</span><span style="color: #800000;">h5</span><span style="color: #0000ff;">></span> <span style="color: #008080;">12</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">h6</span><span style="color: #0000ff;">></span>標(biāo)題六<span style="color: #0000ff;"></</span><span style="color: #800000;">h6</span><span style="color: #0000ff;">></span> <span style="color: #008080;">13</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span> <span style="color: #008080;">14</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">html</span><span style="color: #0000ff;">></span></pre> <p></p> <p>文本格式化,一些常用于設(shè)置文本字體的元素:</p> <p><b>定義粗文本</b><br /></p> <p><i>定義斜文本</i><br /></p> <p><del>定義刪除文本</del><br /></p> <p><sup>定義上標(biāo)字</sup><br /></p> <p><sub>定義下標(biāo)字</sub><br /></p> <p>實(shí)體字符:</p> <p>>? ? 大于號(hào)(>)</p> <p><? ? ?小于號(hào)(<)</p> <p>"? ?引號(hào)(")</p> <p>®? ? ? 注冊(cè)商標(biāo)</p> <p>©? ? 版權(quán)</p> <p>&? ? ?©</p> </div> <div id="dzrvb57" class="mt-64 tags-seach" > <div id="dbxhb5l" class="tags-info"> <a style="width:120px;" title="云服務(wù)器" href="http://m.specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務(wù)器</a> <a style="width:120px;" title="GPU云服務(wù)器" href="http://m.specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務(wù)器</a> <a style="width:120px;" title="html 用法" href="http://m.specialneedsforspecialkids.com/yun/tag/html yongfa/">html 用法</a> <a style="width:120px;" title="html浮動(dòng)用法" href="http://m.specialneedsforspecialkids.com/yun/tag/htmlfudongyongfa/">html浮動(dòng)用法</a> <a style="width:120px;" title="html box用法" href="http://m.specialneedsforspecialkids.com/yun/tag/html boxyongfa/">html box用法</a> <a style="width:120px;" title="html下拉菜單用法" href="http://m.specialneedsforspecialkids.com/yun/tag/htmlxialacaidanyongfa/">html下拉菜單用法</a> </div> </div> <div id="nnvpxdp" 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/2079.html</p> </div> <ul class="pre-next-page"> <li id="jlrxfxj" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/2078.html">上一篇:Chrome調(diào)試技巧</a></li> <li id="7dzb7b7" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/2080.html">下一篇:如何實(shí)現(xiàn)文字兩端對(duì)齊?</a></li> </ul> </div> <div id="bbjp5jp" 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="xdvpvll" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/113293.html"><b>補(bǔ)習(xí)前端(css+<em>html</em>)<em>基礎(chǔ)</em>-1:</b></a></h2> <p class="ellipsis2 good">摘要:標(biāo)簽將表單內(nèi)容的一部分打包,生成一組相關(guān)表單的字段。提示和注釋注釋元素是空元素,它僅包含屬性。注釋此元素只能存在于部分,不過(guò)它可出現(xiàn)任何次數(shù)。屬性屬性規(guī)定當(dāng)前文檔與被鏈接文檔之間的關(guān)系。該標(biāo)簽用于組合表格的主體內(nèi)容。 1.HTML 標(biāo)簽: 實(shí)例 組合表單中的相關(guān)元素: health information height: weight: 定義和用法 fieldset 元素...</p> <div id="rtlf7xd" class="com_white-left-info"> <div id="npnv5ld" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1542.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/15/small_000001542.jpg" alt=""><span id="n7x5xzx" class="layui-hide64">marek</span></a> <time datetime="">2019-08-29 15:24</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="brjphzb" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/52356.html"><b>補(bǔ)習(xí)前端(css+<em>html</em>)<em>基礎(chǔ)</em>-1:</b></a></h2> <p class="ellipsis2 good">摘要:標(biāo)簽將表單內(nèi)容的一部分打包,生成一組相關(guān)表單的字段。提示和注釋注釋元素是空元素,它僅包含屬性。注釋此元素只能存在于部分,不過(guò)它可出現(xiàn)任何次數(shù)。屬性屬性規(guī)定當(dāng)前文檔與被鏈接文檔之間的關(guān)系。該標(biāo)簽用于組合表格的主體內(nèi)容。 1.HTML 標(biāo)簽: 實(shí)例 組合表單中的相關(guān)元素: health information height: weight: 定義和用法 fieldset 元素...</p> <div id="7nf5nnn" class="com_white-left-info"> <div id="pf75llp" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1314.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/13/small_000001314.jpg" alt=""><span id="nbtnfdt" class="layui-hide64">douzifly</span></a> <time datetime="">2019-08-02 10:26</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="pprjpt5" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/90723.html"><b>JSDuck<em>用法</em>詳解</b></a></h2> <p class="ellipsis2 good">摘要:語(yǔ)法父類名表示當(dāng)前類繼承于哪個(gè)類的標(biāo)簽。成員標(biāo)簽成員標(biāo)簽作用于類中的配置屬性函數(shù)事件。表明可被子類繼承,和一起使用。示例獲取圓的面積圓的半徑面積值作用于函數(shù),表明函數(shù)的標(biāo)簽。作用于函數(shù),表明構(gòu)造函數(shù)參數(shù)的標(biāo)簽,用法同。 字?jǐn)?shù):3692字 閱讀時(shí)間:15分鐘 前言 ? 首先,咱們有一個(gè)前提,JSDuck對(duì)我們而言只是一個(gè)便于API查看的文檔化工具。因此,只要它能夠滿足我們文...</p> <div id="fh5xdpr" class="com_white-left-info"> <div id="j5fnr5t" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-570.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/05/small_000000570.jpg" alt=""><span id="pd7zrhj" class="layui-hide64">xiaochao</span></a> <time datetime="">2019-08-21 18:41</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="57bzhxp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/79269.html"><b>webpack<em>基礎(chǔ)</em><em>用法</em></b></a></h2> <p class="ellipsis2 good">摘要:的用法全在配置中是在環(huán)境下運(yùn)行的,學(xué)習(xí)之前,請(qǐng)先自行安裝環(huán)境含安裝第一步全局安裝第二步建立項(xiàng)目文件夾,如一直回車下去項(xiàng)目目錄本地安裝搭建目錄結(jié)構(gòu)在項(xiàng)目根目錄下的簡(jiǎn)單目錄結(jié)構(gòu)如下入口文件安裝時(shí),自動(dòng)建立 ----------webpack的用法全在配置中!!webpack是在node環(huán)境下運(yùn)行的,學(xué)習(xí)webpack之前,請(qǐng)先自行安裝node環(huán)境(含npm); 安裝webpack: 第一步...</p> <div id="pfdjfhv" class="com_white-left-info"> <div id="jjt5vlz" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-89.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/00/small_000000089.jpg" alt=""><span id="rfnfl7b" class="layui-hide64">yexiaobai</span></a> <time datetime="">2019-08-19 18:10</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="7lhzfv7" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/89899.html"><b>SVG<em>基礎(chǔ)</em>教程(超級(jí)詳細(xì))</b></a></h2> <p class="ellipsis2 good">摘要:光滑三次貝塞爾曲線指令跟在指令或指令后面補(bǔ)刀,它會(huì)自動(dòng)在基礎(chǔ)上生成一個(gè)對(duì)稱點(diǎn),所以指令只需要兩個(gè)點(diǎn)就可以。二次貝塞爾曲線是控制點(diǎn),表示的是曲線的終點(diǎn)。 一、內(nèi)置圖形: rect(矩形) circle(圓) ellipse(橢圓) line(直線) polyline(折線) polygon(多邊形) path(路徑) 二、內(nèi)置圖形的html屬性或(css樣...</p> <div id="npv7lp7" class="com_white-left-info"> <div id="dtlfzbd" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-27.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/00/small_000000027.jpg" alt=""><span id="rt5bllb" class="layui-hide64">張憲坤</span></a> <time datetime="">2019-08-21 17:42</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="p375df7" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評(píng)論</span></h3> <div id="rrfx5bp" class="xcp-publish-main flex_box_zd"> <div id="d7n57ln" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評(píng)論</a> </div> </div> </div> <div id="7nflhth" class="site-box-content"> <div id="bdvdln5" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評(píng)論</span></h3> </div> <div id="7d5jbth" class="pages"></ul></div> </div> </div> <div id="ffxdjnb" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="n57vpfj" class=""> <div id="jxpvr5v" class="com_layuiright-box user-msgbox"> <a href="http://m.specialneedsforspecialkids.com/yun/u-223.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/02/small_000000223.jpg" alt=""></a> <h3><a href="http://m.specialneedsforspecialkids.com/yun/u-223.html" rel="nofollow">BlackHole1</a></h3> <h6>男<span>|</span>高級(jí)講師</h6> <div id="7ztb7xp" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(223)" id="attenttouser_223" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="fhnhlnf" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://m.specialneedsforspecialkids.com/yun/ut-223.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/121033.html">#閃購(gòu)#RackNerd:4核8G內(nèi)存100G SSD硬盤5TB流量,$89/年,洛杉磯DC02機(jī)房</a></h3> <p>閱讀 2532<span>·</span>2021-09-24 10:29</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/120596.html">怎么創(chuàng)建虛擬主機(jī)-如何創(chuàng)建虛擬主機(jī)?</a></h3> <p>閱讀 3815<span>·</span>2021-09-22 15:46</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/119114.html">操作符sizeof與函數(shù)strlen哪些事</a></h3> <p>閱讀 2583<span>·</span>2021-09-04 16:41</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/116725.html">前端每日實(shí)戰(zhàn):56# 視頻演示如何用純 CSS 描述程序員的生活</a></h3> <p>閱讀 2988<span>·</span>2019-08-30 15:53</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/115997.html">移動(dòng)端項(xiàng)目的注意點(diǎn)</a></h3> <p>閱讀 1270<span>·</span>2019-08-30 14:24</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/115467.html">JavaScript實(shí)現(xiàn)簡(jiǎn)單的購(gòu)物車</a></h3> <p>閱讀 3063<span>·</span>2019-08-30 13:19</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/113038.html">CSS中選擇器的權(quán)重值</a></h3> <p>閱讀 2179<span>·</span>2019-08-29 14:17</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/112237.html">使用jQuery監(jiān)聽掃碼槍輸入并禁止手動(dòng)輸入的實(shí)現(xiàn)方法</a></h3> <p>閱讀 3530<span>·</span>2019-08-29 12:55</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="1hb5xnd" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動(dòng)</span></h6> <div id="prhr755" class="com_adbox"> <div id="jv77lnd" 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="brzjnd5" 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="bfnjbh5" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="vj55tjx" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="xxpxbdh" id="payread"> <div id="xj5vznz" class="layui-form-item">閱讀需要支付1元查看</div> <div id="vxdjb5t" 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="vnfjth5" class="layui-container"> <div id="j7btv57" class="flex_box_zd"> <div id="vt77nlz" 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="nd5n7vz" 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算力平臺(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繪畫</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="175555b" 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="fxpbl" class="pl_css_ganrao" style="display: none;"><strong id="fxpbl"></strong><ol id="fxpbl"><style id="fxpbl"><video id="fxpbl"><em id="fxpbl"></em></video></style></ol><tt id="fxpbl"><big id="fxpbl"><dl id="fxpbl"><legend id="fxpbl"></legend></dl></big></tt><span id="fxpbl"><strike id="fxpbl"></strike></span><ins id="fxpbl"></ins><legend id="fxpbl"></legend><b id="fxpbl"><mark id="fxpbl"><acronym id="fxpbl"><legend id="fxpbl"></legend></acronym></mark></b><form id="fxpbl"><p id="fxpbl"><var id="fxpbl"><form id="fxpbl"></form></var></p></form><optgroup id="fxpbl"></optgroup><small id="fxpbl"><menuitem id="fxpbl"></menuitem></small><acronym id="fxpbl"><legend id="fxpbl"><dfn id="fxpbl"><u id="fxpbl"></u></dfn></legend></acronym><progress id="fxpbl"><acronym id="fxpbl"></acronym></progress><output id="fxpbl"><span id="fxpbl"><strike id="fxpbl"><strong id="fxpbl"></strong></strike></span></output><font id="fxpbl"></font><legend id="fxpbl"></legend><strike id="fxpbl"><strong id="fxpbl"></strong></strike><em id="fxpbl"><meter id="fxpbl"><span id="fxpbl"><strike id="fxpbl"></strike></span></meter></em><progress id="fxpbl"><acronym id="fxpbl"></acronym></progress><span id="fxpbl"><strike id="fxpbl"><strong id="fxpbl"><dfn id="fxpbl"></dfn></strong></strike></span><meter id="fxpbl"><pre id="fxpbl"></pre></meter><big id="fxpbl"><dl id="fxpbl"></dl></big><p id="fxpbl"></p><progress id="fxpbl"><dl id="fxpbl"></dl></progress><meter id="fxpbl"><pre id="fxpbl"></pre></meter><form id="fxpbl"><rp id="fxpbl"></rp></form><th id="fxpbl"><tt id="fxpbl"><big id="fxpbl"><dl id="fxpbl"></dl></big></tt></th><form id="fxpbl"><legend id="fxpbl"><dfn id="fxpbl"><form id="fxpbl"></form></dfn></legend></form><div id="fxpbl"></div><big id="fxpbl"><label id="fxpbl"><optgroup id="fxpbl"><track id="fxpbl"></track></optgroup></label></big><span id="fxpbl"><strike id="fxpbl"></strike></span><pre id="fxpbl"><strike id="fxpbl"></strike></pre><label id="fxpbl"><optgroup id="fxpbl"><ruby id="fxpbl"><tt id="fxpbl"></tt></ruby></optgroup></label><ins id="fxpbl"><form id="fxpbl"><p id="fxpbl"><sup id="fxpbl"></sup></p></form></ins><ol id="fxpbl"></ol><style id="fxpbl"><video id="fxpbl"><em id="fxpbl"><menuitem id="fxpbl"></menuitem></em></video></style><u id="fxpbl"><ins id="fxpbl"><address id="fxpbl"><div id="fxpbl"></div></address></ins></u><output id="fxpbl"><pre id="fxpbl"><i id="fxpbl"><listing id="fxpbl"></listing></i></pre></output><listing id="fxpbl"><dfn id="fxpbl"></dfn></listing><b id="fxpbl"></b><ol id="fxpbl"><label id="fxpbl"></label></ol><listing id="fxpbl"><optgroup id="fxpbl"></optgroup></listing><output id="fxpbl"></output><legend id="fxpbl"><dfn id="fxpbl"><form id="fxpbl"><rp id="fxpbl"></rp></form></dfn></legend><menuitem id="fxpbl"><span id="fxpbl"><strike id="fxpbl"><strong id="fxpbl"></strong></strike></span></menuitem><meter id="fxpbl"></meter><legend id="fxpbl"><track id="fxpbl"><tt id="fxpbl"><progress id="fxpbl"></progress></tt></track></legend><sup id="fxpbl"><label id="fxpbl"><rp id="fxpbl"><em id="fxpbl"></em></rp></label></sup><video id="fxpbl"><font id="fxpbl"><div id="fxpbl"><ol id="fxpbl"></ol></div></font></video><track id="fxpbl"><thead id="fxpbl"><big id="fxpbl"><acronym id="fxpbl"></acronym></big></thead></track><b id="fxpbl"></b><listing id="fxpbl"><font id="fxpbl"><meter id="fxpbl"><ol id="fxpbl"></ol></meter></font></listing><address id="fxpbl"></address><legend id="fxpbl"></legend><var id="fxpbl"><form id="fxpbl"></form></var><th id="fxpbl"><tt id="fxpbl"><progress id="fxpbl"><acronym id="fxpbl"></acronym></progress></tt></th><u id="fxpbl"><ins id="fxpbl"><form id="fxpbl"><legend id="fxpbl"></legend></form></ins></u><small id="fxpbl"></small><dl id="fxpbl"><strong id="fxpbl"><ruby id="fxpbl"><tt id="fxpbl"></tt></ruby></strong></dl><strong id="fxpbl"><dfn id="fxpbl"><output id="fxpbl"><span id="fxpbl"></span></output></dfn></strong><dfn id="fxpbl"><u id="fxpbl"></u></dfn><ins id="fxpbl"></ins><form id="fxpbl"></form><th id="fxpbl"></th><ruby id="fxpbl"><sub id="fxpbl"></sub></ruby><u id="fxpbl"><mark id="fxpbl"><form id="fxpbl"><p id="fxpbl"></p></form></mark></u><ruby id="fxpbl"><thead id="fxpbl"></thead></ruby><sub id="fxpbl"><strike id="fxpbl"></strike></sub><meter id="fxpbl"><pre id="fxpbl"></pre></meter><dfn id="fxpbl"><output id="fxpbl"><sub id="fxpbl"><big id="fxpbl"></big></sub></output></dfn><u id="fxpbl"><ins id="fxpbl"></ins></u><style id="fxpbl"><nobr id="fxpbl"><em id="fxpbl"><meter id="fxpbl"></meter></em></nobr></style><dfn id="fxpbl"></dfn><sub id="fxpbl"><thead id="fxpbl"></thead></sub><form id="fxpbl"><legend id="fxpbl"><dfn id="fxpbl"><u id="fxpbl"></u></dfn></legend></form><listing id="fxpbl"><dfn id="fxpbl"></dfn></listing><label id="fxpbl"><strong id="fxpbl"><track id="fxpbl"><b id="fxpbl"></b></track></strong></label><optgroup id="fxpbl"></optgroup><font id="fxpbl"><legend id="fxpbl"><var id="fxpbl"><label id="fxpbl"></label></var></legend></font><em id="fxpbl"><div id="fxpbl"><ol id="fxpbl"><style id="fxpbl"></style></ol></div></em><div id="fxpbl"><ol id="fxpbl"></ol></div><legend id="fxpbl"><track id="fxpbl"><tt id="fxpbl"><big id="fxpbl"></big></tt></track></legend><optgroup id="fxpbl"><output id="fxpbl"><sub id="fxpbl"><thead id="fxpbl"></thead></sub></output></optgroup><big id="fxpbl"><label id="fxpbl"><pre id="fxpbl"><dfn id="fxpbl"></dfn></pre></label></big><strong id="fxpbl"><track id="fxpbl"></track></strong><ruby id="fxpbl"><sub id="fxpbl"></sub></ruby><font id="fxpbl"></font><em id="fxpbl"></em><dl id="fxpbl"><pre id="fxpbl"></pre></dl><menuitem id="fxpbl"><sub id="fxpbl"><thead id="fxpbl"><label id="fxpbl"></label></thead></sub></menuitem><em id="fxpbl"><div id="fxpbl"><ol id="fxpbl"><i id="fxpbl"></i></ol></div></em><output id="fxpbl"></output><address id="fxpbl"><p id="fxpbl"></p></address><ruby id="fxpbl"></ruby><dfn id="fxpbl"><b id="fxpbl"></b></dfn><big id="fxpbl"></big><rp id="fxpbl"></rp><style id="fxpbl"><nobr id="fxpbl"><small id="fxpbl"><output id="fxpbl"></output></small></nobr></style><label id="fxpbl"><nobr id="fxpbl"></nobr></label><form id="fxpbl"><rp id="fxpbl"><font id="fxpbl"><div id="fxpbl"></div></font></rp></form><sub id="fxpbl"></sub><label id="fxpbl"><video id="fxpbl"></video></label><video id="fxpbl"><em id="fxpbl"></em></video><label id="fxpbl"></label><label id="fxpbl"></label><form id="fxpbl"></form><progress id="fxpbl"><acronym id="fxpbl"></acronym></progress><ins id="fxpbl"></ins><ruby id="fxpbl"></ruby><label id="fxpbl"><optgroup id="fxpbl"><track id="fxpbl"><thead id="fxpbl"></thead></track></optgroup></label><span id="fxpbl"></span><span id="fxpbl"><strike id="fxpbl"><strong id="fxpbl"><dfn id="fxpbl"></dfn></strong></strike></span><legend id="fxpbl"><th id="fxpbl"><b id="fxpbl"><mark id="fxpbl"></mark></b></th></legend><nobr id="fxpbl"><small id="fxpbl"><menuitem id="fxpbl"><span id="fxpbl"></span></menuitem></small></nobr><pre id="fxpbl"><th id="fxpbl"></th></pre><form id="fxpbl"><p id="fxpbl"><var id="fxpbl"><form id="fxpbl"></form></var></p></form><form id="fxpbl"></form><output id="fxpbl"></output><address id="fxpbl"></address><style id="fxpbl"><video id="fxpbl"><em id="fxpbl"><meter id="fxpbl"></meter></em></video></style><dfn id="fxpbl"><u id="fxpbl"></u></dfn><strike id="fxpbl"><listing id="fxpbl"></listing></strike><font id="fxpbl"><legend id="fxpbl"><sup id="fxpbl"><label id="fxpbl"></label></sup></legend></font><sup id="fxpbl"><label id="fxpbl"><rp id="fxpbl"><font id="fxpbl"></font></rp></label></sup><strong id="fxpbl"><ruby id="fxpbl"></ruby></strong><sup id="fxpbl"><form id="fxpbl"></form></sup><dfn id="fxpbl"><u id="fxpbl"></u></dfn><listing id="fxpbl"><small id="fxpbl"><menuitem id="fxpbl"><span id="fxpbl"></span></menuitem></small></listing><track id="fxpbl"><tt id="fxpbl"><big id="fxpbl"><form id="fxpbl"></form></big></tt></track><mark id="fxpbl"><form id="fxpbl"><legend id="fxpbl"><var id="fxpbl"></var></legend></form></mark><nobr id="fxpbl"><small id="fxpbl"><menuitem id="fxpbl"><span id="fxpbl"></span></menuitem></small></nobr><dl id="fxpbl"></dl><dfn id="fxpbl"></dfn><ruby id="fxpbl"><thead id="fxpbl"></thead></ruby><form id="fxpbl"><ins id="fxpbl"><address id="fxpbl"><p id="fxpbl"></p></address></ins></form><div id="fxpbl"><ol id="fxpbl"></ol></div><ruby id="fxpbl"></ruby><form id="fxpbl"></form><address id="fxpbl"><legend id="fxpbl"></legend></address><nobr id="fxpbl"></nobr><i id="fxpbl"></i><thead id="fxpbl"><label id="fxpbl"><optgroup id="fxpbl"><th id="fxpbl"></th></optgroup></label></thead><thead id="fxpbl"><progress id="fxpbl"></progress></thead><b id="fxpbl"><mark id="fxpbl"></mark></b><u id="fxpbl"></u><ins id="fxpbl"><address id="fxpbl"><legend id="fxpbl"><ol id="fxpbl"></ol></legend></address></ins><pre id="fxpbl"><style id="fxpbl"><listing id="fxpbl"><small id="fxpbl"></small></listing></style></pre><u id="fxpbl"><mark id="fxpbl"></mark></u><p id="fxpbl"><sup id="fxpbl"></sup></p><listing id="fxpbl"><dfn id="fxpbl"></dfn></listing><optgroup id="fxpbl"><ruby id="fxpbl"><tt id="fxpbl"><big id="fxpbl"></big></tt></ruby></optgroup></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>