成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

01.HTML

Soarkey / 1044人閱讀

摘要:向服務(wù)器提交表單的通常做法是使用提交按鈕。規(guī)定瀏覽器應(yīng)該自動完成表單默認(rèn)開啟。規(guī)定在提交表單時(shí)所用的方法默認(rèn)。規(guī)定識別表單的名稱對于使用。表單元素表單元素是允許用戶在表單中輸入內(nèi)容比如文本域下拉列表單選框復(fù)選框等等。

網(wǎng)頁的組成

結(jié)構(gòu)(HTML):超文本標(biāo)記語言

表現(xiàn)(CSS):層疊樣式表

行為(JavaScript):腳本語言

一個(gè)良好的網(wǎng)頁要結(jié)構(gòu)、表現(xiàn)、行為三者分離

HTML簡介
是一種用于創(chuàng)建網(wǎng)頁的標(biāo)準(zhǔn)標(biāo)記語言。
您可以使用 HTML 來建立自己的 WEB 站點(diǎn),HTML 運(yùn)行在瀏覽器上,由瀏覽器來解析。

HTML 不是一種編程語言,而是一種標(biāo)記語言

標(biāo)記語言是一套標(biāo)記標(biāo)簽 (markup tag)

HTML 使用標(biāo)記標(biāo)簽來描述網(wǎng)頁

HTML 文檔包含了HTML 標(biāo)簽及文本內(nèi)容

HTML文檔也叫做 web 頁面





title


我的第一個(gè)標(biāo)題

我的第一個(gè)段落。

聲明為 HTML5 文檔 元素是 HTML 頁面的根元素 元素包含了文檔的元(meta)數(shù)據(jù),如 定義網(wǎng)頁編碼格式為 utf-8。 元素描述了文檔的標(biāo)題 <body> 元素包含了可見的頁面內(nèi)容 <h1> 元素定義一個(gè)大標(biāo)題 <p> 元素定義一個(gè)段落</pre> </p> <b>HTML基本語法</b> <p>HTML中的標(biāo)簽分為成對出現(xiàn)的標(biāo)簽和自結(jié)束標(biāo)簽</p> <p>HTML中的標(biāo)簽不區(qū)分大小寫,但是建議小寫</p> <p>標(biāo)簽可以嵌套但不能交叉嵌套</p> <p>成對出現(xiàn)的標(biāo)簽必須正確關(guān)閉</p> <p>屬性必須有值且值必須加引號</p> <p>注釋不能嵌套</p> <pre><!-- 1.標(biāo)簽的分類 --> <!-- 標(biāo)簽分為成對出現(xiàn)的標(biāo)簽和自結(jié)束標(biāo)簽兩種 -成對出現(xiàn)的標(biāo)簽:如:<html></html> 、<head></head> 、 <p></p> -自結(jié)束標(biāo)簽:如:、<input /> 、<br/> --> <!-- 2.標(biāo)簽不區(qū)分大小寫 --> <P>標(biāo)簽不區(qū)分大小寫,但建議小寫</p> <!-- 3.標(biāo)簽可以嵌套但不能交叉嵌套 --> <div><p>標(biāo)簽可以嵌套,但不能交叉嵌套</div></p> <!-- 4.標(biāo)簽必須正確關(guān)閉 --> <p>成對出現(xiàn)的標(biāo)簽必須正確關(guān)閉</p> <!-- 5.屬性必須有值,且屬性值必須加引號 --> <font color="red">我要紅</font> <!-- 屬性值沒有加引號 --> <font color=red>我要紅2</font> <!-- 屬性沒有值 --> <font color="">我要紅3</font> <!-- 6.注釋不能嵌套 --> <!-- 注釋的快捷鍵是:Ctrl+shift+/ --> <!-- <!-- 我是嵌套的注釋 --> --></pre> <b>HTML屬性</b> <p>HTML 元素可以設(shè)置屬性</p> <p>屬性可以在元素中添加附加信息</p> <p>屬性一般描述于開始標(biāo)簽</p> <p>屬性總是以名稱/值對的形式出現(xiàn),比如:name="value"。</p> <table> <thead><tr> <th>屬性</th> <th>描述</th> </tr></thead> <tbody> <tr> <td>class</td> <td>為html元素定義一個(gè)或多個(gè)類名(classname)(類名從樣式文件引入)</td> </tr> <tr> <td>id</td> <td>定義元素的唯一id</td> </tr> <tr> <td>style</td> <td>規(guī)定元素的行內(nèi)樣式(inline style)</td> </tr> <tr> <td>title</td> <td>描述了元素的額外信息 (作為工具條使用)</td> </tr> </tbody> </table> <b>HTML常用標(biāo)簽</b> <b>標(biāo)題標(biāo)簽</b> <pre><h1></h1> ~ <h6></h6></pre> <b>div標(biāo)簽</b> <pre><div>我是div標(biāo)簽,我主要用來布局,我默認(rèn)占用瀏覽器的一整行</div></pre> <b>p標(biāo)簽</b> <pre><p>我是一個(gè)段落,我默認(rèn)也是占用瀏覽器的一整行,而且前后要空一行</p> <br> 標(biāo)簽換行(新行): <p>這個(gè)<br>段落<br>分行</p></pre> <b>轉(zhuǎn)義字符</b> <pre>小于號:< 大于號:> 空格:  版權(quán)符:©</pre> <b>列表</b> <pre>無序列表 <ul> <li>網(wǎng)頁</li> <li>新聞</li> <li>貼吧</li> </ul> 有序列表 <ol> <li>網(wǎng)頁</li> <li>新聞</li> <li>貼吧</li> </ol></pre> <b>圖片</b> <pre> ? 通過img標(biāo)簽向網(wǎng)頁中插入一張圖片 ? alt屬性:用來設(shè)置當(dāng)圖片無法顯示時(shí)的描述性信息 ? src屬性:用來設(shè)置圖片的路徑 ? 在相對路徑中,通過../來返回上一級目錄,返回多級目錄使用多個(gè)../ </pre> <b>超鏈接</b> <pre><a href="http://..." target="_blank">這是一個(gè)鏈接</a> ? 使用a標(biāo)簽來創(chuàng)建一個(gè)超鏈接 ? href屬性:用來設(shè)置要跳轉(zhuǎn)的頁面的地址 ? targe屬性:用來設(shè)置要跳轉(zhuǎn)的頁面在何處打開 ? _self:在當(dāng)前窗口打開,默認(rèn)值 ? _blank:在新的窗口打開</pre> <b>表格</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> </tr></thead> <tbody> <tr> <td>table</td> <td>定義表格</td> </tr> <tr> <td>th</td> <td>定義表格的表頭</td> </tr> <tr> <td>tr</td> <td>定義表格的行</td> </tr> <tr> <td>td</td> <td>定義表格單元</td> </tr> <tr> <td>caption</td> <td>定義表格標(biāo)題</td> </tr> <tr> <td>colgroup</td> <td>定義表格列的組</td> </tr> <tr> <td>col</td> <td>定義用于表格列的屬性</td> </tr> </tbody> </table> <pre><!-- 使用table標(biāo)簽來創(chuàng)建一個(gè)表格 --> <table border="1"> <!-- 通過tr標(biāo)簽來表示表格中的行 --> <tr> <!-- 通過th標(biāo)簽來表示表格中的表頭 --> <th>姓名</th> <th>陣營</th> <th>職業(yè)</th> <th>武器</th> </tr> <tr> <!-- 通過td標(biāo)簽來表示表格中的列(單元格) --> <td>劉備</td> <!-- 跨行合并單元格使用rowspan屬性來設(shè)置 --> <td rowspan="4" align="center">蜀</td> <td>蜀漢集團(tuán)董事長</td> <td>雙股劍</td> </tr> <tr> <!-- 通過td標(biāo)簽來表示表格中的列(單元格) --> <td>諸葛亮</td> <!-- <td>蜀</td> --> <!-- 跨列合并單元格使用colspan屬性來設(shè)置 --> <td colspan="2" align="center">蜀漢集團(tuán)CEO</td> <!-- <td>破扇子</td> --> </tr> <tr> <!-- 通過td標(biāo)簽來表示表格中的列(單元格) --> <td>關(guān)羽</td> <!-- <td>蜀</td> --> <td>荊襄總裁</td> <td>青龍偃月刀</td> </tr> <tr> <!-- 通過td標(biāo)簽來表示表格中的列(單元格) --> <td>張飛</td> <!--<td>蜀</td> --> <td>閬中銷售經(jīng)理</td> <td>丈八蛇矛</td> </tr> </table> </pre> <b>表單</b> <p>表單是一個(gè)包含表單元素的區(qū)域。表單本身并不可見。</p> <b>from</b> <table> <thead><tr> <th align="left">標(biāo)簽</th> <th align="left">描述</th> </tr></thead> <tbody><tr> <td align="left">form</td> <td align="left">定義供用戶輸入的表單</td> </tr></tbody> </table> <p>屬性:</p> <p>Action 屬性<p>action 屬性*定義在提交表單時(shí)執(zhí)行的動作。</p> <p>向服務(wù)器提交表單的通常做法是使用提交按鈕。</p> <p>通常,表單會被提交到 web 服務(wù)器上的網(wǎng)頁。</p> <p>在上面的例子中,指定了某個(gè)服務(wù)器腳本來處理被提交表單:</p> <p><b><form action="action_page.java"></b></p> <p>如果省略 action 屬性,則 action 會被設(shè)置為要跳轉(zhuǎn)的頁面。</p> </p> <p> <p>Method 屬性</p> <p><em>method 屬性</em>規(guī)定在提交表單時(shí)所用的 HTTP 方法(<em>GET</em> 或 <em>POST</em>):</p> <p><b><form action="action_page.java" method="GET"></b></p> <p><b><form action="action_page.java" method="POST"></b></p> <p>GET(默認(rèn)方法):</p> <p>? 如果表單提交是被動的(比如搜索引擎查詢),并且沒有敏感信息。</p> <p>? 當(dāng)您使用 GET 時(shí),表單數(shù)據(jù)在頁面地址欄中是可見的:</p> <pre> `action_page.php?firstname=Mickey&lastname=Mouse` </pre> <p>? 注釋:GET 最適合少量數(shù)據(jù)的提交。瀏覽器會設(shè)定容量限制。</p> <p>POST:</p> <p>? 如果表單正在更新數(shù)據(jù),或者包含敏感信息(例如密碼)。</p> <p>? POST 的安全性更加,因?yàn)樵陧撁娴刂窓谥斜惶峤坏臄?shù)據(jù)是不可見的。</p> </p> <table> <thead><tr> <th align="left">屬性</th> <th align="left">描述</th> </tr></thead> <tbody> <tr> <td align="left">accept-charset</td> <td align="left">規(guī)定在被提交表單中使用的字符集(默認(rèn):頁面字符集)。</td> </tr> <tr> <td align="left">action</td> <td align="left">規(guī)定向何處提交表單的地址(URL)(提交頁面)。</td> </tr> <tr> <td align="left">autocomplete</td> <td align="left">規(guī)定瀏覽器應(yīng)該自動完成表單(默認(rèn):開啟)。</td> </tr> <tr> <td align="left">enctype</td> <td align="left">規(guī)定被提交數(shù)據(jù)的編碼(默認(rèn):url-encoded)。</td> </tr> <tr> <td align="left">method</td> <td align="left">規(guī)定在提交表單時(shí)所用的 HTTP 方法(默認(rèn):GET)。</td> </tr> <tr> <td align="left">name</td> <td align="left">規(guī)定識別表單的名稱(對于 DOM 使用:document.forms.name)。</td> </tr> <tr> <td align="left">novalidate</td> <td align="left">規(guī)定瀏覽器不驗(yàn)證表單。</td> </tr> <tr> <td align="left">target</td> <td align="left">規(guī)定 action 屬性中地址的目標(biāo)(默認(rèn):_self)。</td> </tr> </tbody> </table> <pre><form action="action_page.php" method="GET" target="_blank" accept-charset="UTF-8" ectype="application/x-www-form-urlencoded" autocomplete="off" novalidate> . form elements . </form> </pre> <b>表單元素</b> <p>表單元素是允許用戶在表單中輸入內(nèi)容,比如:文本域(textarea)、下拉列表、單選框(radio-buttons)、復(fù)選框(checkboxes)等等。</p> <b>input</b> <p>類型:</p> <table> <thead><tr> <th align="left">標(biāo)簽</th> <th align="left">描述</th> </tr></thead> <tbody> <tr> <td align="left">input</td> <td align="left">定義輸入域</td> </tr> <tr> <td align="left">text</td> <td align="left">文本輸入的單行輸入字段</td> </tr> <tr> <td align="left">password</td> <td align="left">定義密碼字段</td> </tr> <tr> <td align="left">chekbox</td> <td align="left">定義復(fù)選框</td> </tr> <tr> <td align="left">radio</td> <td align="left">定義單選按鈕輸入(選擇多個(gè)選擇之一)</td> </tr> <tr> <td align="left">submit</td> <td align="left">定義提交按鈕(提交表單)</td> </tr> <tr> <td align="left">reset</td> <td align="left">定義重置按鈕</td> </tr> </tbody> </table> <p>屬性:</p> <table> <thead><tr> <th>屬性</th> <th>描述</th> </tr></thead> <tbody> <tr> <td>type</td> <td>表單項(xiàng)的類型</td> </tr> <tr> <td>name</td> <td>為控件命名,以備后臺程序用</td> </tr> <tr> <td>value</td> <td>提交數(shù)據(jù)到服務(wù)器的值(后臺程序使用)</td> </tr> <tr> <td>selected</td> <td>設(shè)置默認(rèn)被選中</td> </tr> </tbody> </table> <b>select</b> <p>定義下拉列表:</p> <pre><select name="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat">Fiat</option> <option value="audi" selected="selected">Audi</option> </select></pre> <p><em><option></em> 元素定義待選擇的選項(xiàng).</p> <p>列表通常會把首個(gè)選項(xiàng)顯示為被選選項(xiàng).</p> <p>selected 屬性來定義預(yù)定義選項(xiàng)。</p> <b>textarea</b> <p>定義多行輸入字段(<em>文本域</em>):</p> <p><b><textarea name="message" rows="10" cols="30"> textarea </textarea></b></p> <b>button</b> <p>定義可點(diǎn)擊的按鈕:</p> <p><b><button type="button" onclick="alert("Hello World!")">Click Me!</button></b></p> <pre><body> <!-- 通過form標(biāo)簽創(chuàng)建一個(gè)表單 --> <!-- action屬性:用來設(shè)置服務(wù)器的地址 --> <!-- 通過method屬性可以設(shè)置表單提交的請求的方式,可選值有GET和POST --> <form action="success.html" method="post"> <!-- 1.表單中的表單項(xiàng)通過input標(biāo)簽表示,表單項(xiàng)的類型通過input標(biāo)簽中的type屬性來指定 --> <!-- 2.表單項(xiàng)必須設(shè)置name屬性值,用戶輸入的數(shù)據(jù)通過name屬性值進(jìn)行攜帶,以鍵值對的形式發(fā)送到服務(wù)器, 如:username=admin89&password=999999 --> 用戶名:<input type="text" name="username"><br/><br> 密碼:<input type="password" name="password"><br><br> <!-- 1.要保證單選按鈕單選,必須將它們設(shè)置為一組,即將它們的name屬性值設(shè)置為同一個(gè) 2.單選按鈕提交的是value屬性值,所以必須設(shè)置value屬性值 3.通過checked="checked"設(shè)置默認(rèn)被選中 --> 性別:<input type="radio" name="gender" value="man" checked="checked">男 <input type="radio" name="gender" value="woman">女<br><br> <!-- 1.必須將復(fù)選框它們設(shè)置為一組,即將它們的name屬性值設(shè)置為同一個(gè) 2.復(fù)選框提交的是value屬性值,所以必須設(shè)置value屬性值 3.通過checked="checked"設(shè)置默認(rèn)被選中 --> 你的愛好: <input type="checkbox" name="hobby" value="money">錢 <input type="checkbox" name="hobby" value="beauty" checked="checked">美女 <input type="checkbox" name="hobby" value="sleeping">睡覺 <br><br> 選擇列表: <select name="star"> <!-- 如果沒有指定value屬性值,提交的是option中的文本值,如果設(shè)置了value屬性值,提交的就是value屬性值 --> <option value="bdyjy">one</option> <option>two</option> <!-- 通過selected="selected"設(shè)置默認(rèn)被選中 --> <option selected="selected">three</option> <option>four</option> <option>five</option> <option value="fbb">six</option> </select> <br><br> <input type="reset"> <!-- 通過value屬性值設(shè)置按鈕中顯示的文本 --> <input type="submit" value="登錄"> </form> </body></pre> </div> <div id="qoyqs8suu2u" class="mt-64 tags-seach" > <div id="qoyqs8suu2u" class="tags-info"> <a style="width:120px;" title="云服務(wù)器" href="http://systransis.cn/site/active/kuaijiesale.html?ytag=seo">云服務(wù)器</a> <a style="width:120px;" title="GPU云服務(wù)器" href="http://systransis.cn/site/product/gpu.html">GPU云服務(wù)器</a> </div> </div> <div id="qoyqs8suu2u" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。</p> <p>轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/77901.html</p> </div> <ul class="pre-next-page"> <li id="qoyqs8suu2u" class="ellipsis"><a class="hpf" href="http://systransis.cn/yun/77900.html">上一篇:【修煉內(nèi)功】[JVM] 虛擬機(jī)視角的方法調(diào)用</a></li> <li id="qoyqs8suu2u" class="ellipsis"><a class="hpf" href="http://systransis.cn/yun/77902.html">下一篇:Thread and AbstractQueuedSynchronizer</a></li> </ul> </div> <div id="qoyqs8suu2u" 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="qoyqs8suu2u" class="atricle-list-left"> <a href="http://systransis.cn/yun/1244.html"><img src="https://img2018.cnblogs.com/blog/1364810/201812/1364810-20181220002247512-934359161.jpg" alt=""></a> </div> <div id="qoyqs8suu2u" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://systransis.cn/yun/1244.html"><b><em>01</em>-<em>html</em>介紹和head標(biāo)簽</b></a></h2> <p class="ellipsis2 good">摘要:三開發(fā)工具的使用使用技巧編輯器四介紹的概述全稱,翻譯為超文本標(biāo)記語言,它不是一種編程語言,是一種描述性的標(biāo)記語言,用于描述超文本內(nèi)容的顯示方式?!巨D(zhuǎn)】01-html介紹和head標(biāo)簽主要內(nèi)容web標(biāo)準(zhǔn)瀏覽器介紹開發(fā)工具介紹HTML介紹HTML顏色介紹HTML規(guī)范HTML結(jié)構(gòu)詳解一、web標(biāo)準(zhǔn)web準(zhǔn)備介紹:w3c:萬維網(wǎng)聯(lián)盟組織,用來制定web標(biāo)準(zhǔn)的機(jī)構(gòu)(組織)web標(biāo)準(zhǔn):制作網(wǎng)頁遵循的規(guī)范...</p> <div id="qoyqs8suu2u" class="com_white-left-info"> <div id="qoyqs8suu2u" class="com_white-left-infol"> <a href="http://systransis.cn/yun/u-1725.html"><img src="http://systransis.cn/yun/data/avatar/000/00/17/small_000001725.jpg" alt=""><span id="qoyqs8suu2u" class="layui-hide64">番茄西紅柿</span></a> <time datetime="">2019-04-23 11:51</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="qoyqs8suu2u" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://systransis.cn/yun/54083.html"><b><em>01</em>.<em>HTML</em></b></a></h2> <p class="ellipsis2 good">摘要:向服務(wù)器提交表單的通常做法是使用提交按鈕。規(guī)定瀏覽器應(yīng)該自動完成表單默認(rèn)開啟。規(guī)定在提交表單時(shí)所用的方法默認(rèn)。規(guī)定識別表單的名稱對于使用。表單元素表單元素是允許用戶在表單中輸入內(nèi)容比如文本域下拉列表單選框復(fù)選框等等。 網(wǎng)頁的組成 結(jié)構(gòu)(HTML):超文本標(biāo)記語言 表現(xiàn)(CSS):層疊樣式表 行為(JavaScript):腳本語言 一個(gè)良好的網(wǎng)頁要結(jié)構(gòu)、表現(xiàn)、行為三者分離 HTML簡...</p> <div id="qoyqs8suu2u" class="com_white-left-info"> <div id="qoyqs8suu2u" class="com_white-left-infol"> <a href="http://systransis.cn/yun/u-1507.html"><img src="http://systransis.cn/yun/data/avatar/000/00/15/small_000001507.jpg" alt=""><span id="qoyqs8suu2u" class="layui-hide64">aboutU</span></a> <time datetime="">2019-08-02 15:22</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="qoyqs8suu2u" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://systransis.cn/yun/2013.html"><b><em>01</em>-<em>HTML</em>深入</b></a></h2> <p class="ellipsis2 good">摘要:是由行構(gòu)成行是由單元格構(gòu)成。單元格跨行單元格可以向下跨越多個(gè)行,被占的單元格向右擠。國際貿(mào)易是世界經(jīng)濟(jì)增長的重要一環(huán),美國公開違反世貿(mào)規(guī)則,大范圍挑起貿(mào)易爭端,勢必破壞全球貿(mào)易秩序,危害世界經(jīng)濟(jì)增長。1.1? 瀏覽器的工作原理 ? ? ? ? ?把一些標(biāo)簽解析成用戶可視化的頁面 1.2 HTML中的標(biāo)簽與元素 ? ? ? ? ? ?在HTML中以開始,以結(jié)束,比如等。 ? ? ? ? ? ?...</p> <div id="qoyqs8suu2u" class="com_white-left-info"> <div id="qoyqs8suu2u" class="com_white-left-infol"> <a href="http://systransis.cn/yun/u-292.html"><img src="http://systransis.cn/yun/data/avatar/000/00/02/small_000000292.jpg" alt=""><span id="qoyqs8suu2u" class="layui-hide64">LoftySoul</span></a> <time datetime="">2019-04-23 13:32</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="qoyqs8suu2u" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://systransis.cn/yun/53104.html"><b>JavaWEB開發(fā)<em>01</em>——<em>HTML</em></b></a></h2> <p class="ellipsis2 good">摘要:網(wǎng)站信息頁面需求分析我們公司的需要一個(gè)對外宣傳的網(wǎng)站介紹介紹公司的主要業(yè)務(wù)公司的發(fā)展歷史公司的口號等等信息技術(shù)分析概述超文本標(biāo)記語言超文本比普通文本功能更加強(qiáng)大可以添加各種樣式標(biāo)記語言通過一組標(biāo)簽來對內(nèi)容進(jìn)行描述關(guān)鍵字是由瀏覽器來解釋執(zhí)行靜 1.網(wǎng)站信息頁面 1.1需求分析: 我們公司的需要一個(gè)對外宣傳的網(wǎng)站介紹,介紹公司的主要業(yè)務(wù),公司的發(fā)展歷史,公司的口號等等信息 1.2技術(shù)分析:...</p> <div id="qoyqs8suu2u" class="com_white-left-info"> <div id="qoyqs8suu2u" class="com_white-left-infol"> <a href="http://systransis.cn/yun/u-1313.html"><img src="http://systransis.cn/yun/data/avatar/000/00/13/small_000001313.jpg" alt=""><span id="qoyqs8suu2u" class="layui-hide64">IntMain</span></a> <time datetime="">2019-08-02 11:46</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="qoyqs8suu2u" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://systransis.cn/yun/87939.html"><b>rem 單位實(shí)現(xiàn)頁面自適應(yīng)布局</b></a></h2> <p class="ellipsis2 good">摘要:單位介紹既然扯到了這個(gè)單位,那就有必要先解釋下這個(gè)單位具體含義,上的解釋注意圖中的畫線部分,這個(gè)單位需要高版本的瀏覽器支持,不過,一般用于移動端布局,所以,基本上無需考慮瀏覽器版本問題,放心用吧。相對于根元素的大小,自動計(jì)算出其具體值。 A. 先看一個(gè)函數(shù): /* * 設(shè)置根元素字體大小 * @param Number minSW 最小縮放的設(shè)備屏幕寬度 * @param Nu...</p> <div id="qoyqs8suu2u" class="com_white-left-info"> <div id="qoyqs8suu2u" class="com_white-left-infol"> <a href="http://systransis.cn/yun/u-360.html"><img src="http://systransis.cn/yun/data/avatar/000/00/03/small_000000360.jpg" alt=""><span id="qoyqs8suu2u" class="layui-hide64">xavier</span></a> <time datetime="">2019-08-21 14:31</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="qoyqs8suu2u" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評論</span></h3> <div id="qoyqs8suu2u" class="xcp-publish-main flex_box_zd"> <div id="qoyqs8suu2u" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="qoyqs8suu2u" class="site-box-content"> <div id="qoyqs8suu2u" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="qoyqs8suu2u" class="pages"></ul></div> </div> </div> <div id="qoyqs8suu2u" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="qoyqs8suu2u" class=""> <div id="qoyqs8suu2u" class="com_layuiright-box user-msgbox"> <a href="http://systransis.cn/yun/u-939.html"><img src="http://systransis.cn/yun/data/avatar/000/00/09/small_000000939.jpg" alt=""></a> <h3><a href="http://systransis.cn/yun/u-939.html" rel="nofollow">Soarkey</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="qoyqs8suu2u" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(939)" id="attenttouser_939" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="qoyqs8suu2u" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://systransis.cn/yun/ut-939.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/130718.html">tensorflow1.4</a></h3> <p>閱讀 2026<span>·</span>2023-04-25 19:03</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/122481.html">曙光發(fā)布“城市云腦”系列解決方案 十大場景全賦能智慧城市_云資訊</a></h3> <p>閱讀 1200<span>·</span>2021-10-14 09:42</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/120370.html">云主機(jī)3m帶寬支持多少人在線-云服務(wù)器上5M帶寬大概支持多少人同時(shí)在線?</a></h3> <p>閱讀 3363<span>·</span>2021-09-22 15:16</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/119807.html">?算法入門?《二叉樹 - 二叉搜索樹》簡單05 —— LeetCode 897. 遞增順序搜索樹</a></h3> <p>閱讀 902<span>·</span>2021-09-10 10:51</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/119235.html">硬件創(chuàng)業(yè):智能硬件產(chǎn)品詳細(xì)開發(fā)指南</a></h3> <p>閱讀 1494<span>·</span>2021-09-06 15:00</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/117174.html">淺談pc和移動端的響應(yīng)式</a></h3> <p>閱讀 2380<span>·</span>2019-08-30 15:55</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/113698.html">css3過渡</a></h3> <p>閱讀 446<span>·</span>2019-08-29 16:22</p></li> <li><h3 class="ellipsis"><a href="http://systransis.cn/yun/109603.html">大話Redux</a></h3> <p>閱讀 880<span>·</span>2019-08-26 13:49</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="qoyqs8suu2u" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="qoyqs8suu2u" class="com_adbox"> <div id="qoyqs8suu2u" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://systransis.cn/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://systransis.cn/yun/data/attach/240625/2rTjEHmi.png" alt="云服務(wù)器"> </a> </div> <div> <a href="http://systransis.cn/site/product/gpu.html" rel="nofollow"> <img src="http://systransis.cn/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務(wù)器"> </a> </div> </div> </div> </div> <!-- banner結(jié)束 --> <div id="qoyqs8suu2u" class="adhtml"> </div> <script> $(function(){ $.ajax({ type: "GET", url:"http://systransis.cn/yun/ad/getad/1.html", cache: false, success: function(text){ $(".adhtml").html(text); } }); }) </script> </div> </div> </div> </div> </div> </section> <!-- wap拉出按鈕 --> <div id="qoyqs8suu2u" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="qoyqs8suu2u" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="qoyqs8suu2u" id="payread"> <div id="qoyqs8suu2u" class="layui-form-item">閱讀需要支付1元查看</div> <div id="qoyqs8suu2u" 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://systransis.cn/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <script src="http://systransis.cn/yun/static/js/neweditor/code/highlight.pack.js" type="text/javascript"></script> <script src="http://systransis.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://systransis.cn/yun/index.php?topic/ajaxhassupport/" + tid, cache: false, success: function(hassupport){ if (hassupport != '1'){ $.ajax({ type: "GET", cache:false, url: "http://systransis.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://systransis.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="qoyqs8suu2u" class="layui-container"> <div id="qoyqs8suu2u" class="flex_box_zd"> <div id="qoyqs8suu2u" class="left-footer"> <h6><a href="http://systransis.cn/"><img src="http://systransis.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="qoyqs8suu2u" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務(wù)</h6> <p><a href="http://systransis.cn/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://systransis.cn/site/ucan/onlineclass/">UCan線上公開課</a></p> <p><a href="http://systransis.cn/site/solutions.html" >行業(yè)解決方案</a></p> <p><a href="http://systransis.cn/site/pro-notice/">產(chǎn)品動態(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://systransis.cn/yun/column/index.html">專欄文章</a></p> <p><a href="http://systransis.cn/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見問題</h6> <p><a href="http://systransis.cn/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://systransis.cn/site/about/news/recent/" >新聞動態(tài)</a></p> <p><a href="http://systransis.cn/site/about/news/report/">媒體動態(tài)</a></p> <p><a href="http://systransis.cn/site/cases.html">客戶案例</a></p> <p><a href="http://systransis.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="qoyqs8suu2u" 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.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://systransis.cn/" title="成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费">成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费</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="owggi" class="pl_css_ganrao" style="display: none;"><samp id="owggi"><th id="owggi"><s id="owggi"></s></th></samp><optgroup id="owggi"><ul id="owggi"><sup id="owggi"></sup></ul></optgroup><noframes id="owggi"></noframes><source id="owggi"></source><dl id="owggi"><nav id="owggi"><li id="owggi"></li></nav></dl><optgroup id="owggi"><abbr id="owggi"><center id="owggi"></center></abbr></optgroup><cite id="owggi"><table id="owggi"><tr id="owggi"></tr></table></cite><th id="owggi"><nav id="owggi"><small id="owggi"></small></nav></th><tfoot id="owggi"></tfoot><source id="owggi"><strong id="owggi"><noframes id="owggi"></noframes></strong></source><noscript id="owggi"></noscript><strong id="owggi"></strong><noframes id="owggi"><ul id="owggi"><tfoot id="owggi"></tfoot></ul></noframes><samp id="owggi"><th id="owggi"><object id="owggi"></object></th></samp><wbr id="owggi"></wbr><input id="owggi"></input><abbr id="owggi"></abbr><del id="owggi"></del><del id="owggi"></del><pre id="owggi"><wbr id="owggi"><cite id="owggi"></cite></wbr></pre><noscript id="owggi"><pre id="owggi"><blockquote id="owggi"></blockquote></pre></noscript><small id="owggi"><button id="owggi"><samp id="owggi"></samp></button></small><pre id="owggi"></pre><center id="owggi"></center><li id="owggi"></li><em id="owggi"><blockquote id="owggi"><tfoot id="owggi"></tfoot></blockquote></em><acronym id="owggi"></acronym><noframes id="owggi"></noframes><wbr id="owggi"></wbr><bdo id="owggi"></bdo><menu id="owggi"></menu><td id="owggi"></td><pre id="owggi"></pre><center id="owggi"></center><small id="owggi"><button id="owggi"><samp id="owggi"></samp></button></small><nav id="owggi"></nav><dl id="owggi"></dl><strike id="owggi"></strike><tr id="owggi"></tr><source id="owggi"></source><object id="owggi"><small id="owggi"><button id="owggi"></button></small></object><blockquote id="owggi"></blockquote><source id="owggi"></source><cite id="owggi"></cite><ul id="owggi"></ul><tbody id="owggi"></tbody><dfn id="owggi"><source id="owggi"><dl id="owggi"></dl></source></dfn><table id="owggi"><kbd id="owggi"><acronym id="owggi"></acronym></kbd></table><delect id="owggi"></delect><blockquote id="owggi"></blockquote><sup id="owggi"></sup><noscript id="owggi"></noscript><li id="owggi"></li><bdo id="owggi"></bdo><menu id="owggi"></menu><acronym id="owggi"></acronym><abbr id="owggi"></abbr><xmp id="owggi"></xmp><center id="owggi"></center><input id="owggi"></input><dfn id="owggi"><source id="owggi"><strong id="owggi"></strong></source></dfn><sup id="owggi"></sup><td id="owggi"></td><noscript id="owggi"></noscript><delect id="owggi"></delect><s id="owggi"><bdo id="owggi"><abbr id="owggi"></abbr></bdo></s><dd id="owggi"><th id="owggi"><object id="owggi"></object></th></dd><del id="owggi"></del><del id="owggi"></del><samp id="owggi"><th id="owggi"><s id="owggi"></s></th></samp><object id="owggi"></object><tfoot id="owggi"></tfoot><th id="owggi"></th><tfoot id="owggi"></tfoot><input id="owggi"></input><center id="owggi"></center><li id="owggi"></li><s id="owggi"></s><pre id="owggi"></pre><nav id="owggi"><li id="owggi"><button id="owggi"></button></li></nav><dfn id="owggi"><source id="owggi"><strong id="owggi"></strong></source></dfn><td id="owggi"></td><dd id="owggi"></dd><strong id="owggi"><optgroup id="owggi"><abbr id="owggi"></abbr></optgroup></strong><tbody id="owggi"></tbody><menu id="owggi"></menu><blockquote id="owggi"></blockquote><dfn id="owggi"></dfn><acronym id="owggi"></acronym><del id="owggi"></del><dfn id="owggi"><center id="owggi"><strong id="owggi"></strong></center></dfn><option id="owggi"></option><blockquote id="owggi"></blockquote><center id="owggi"></center><wbr id="owggi"></wbr><em id="owggi"></em><wbr id="owggi"></wbr><code id="owggi"><noframes id="owggi"><ul id="owggi"></ul></noframes></code><xmp id="owggi"><fieldset id="owggi"><menu id="owggi"></menu></fieldset></xmp><rt id="owggi"><tbody id="owggi"><noframes id="owggi"></noframes></tbody></rt></div> <script src="http://systransis.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>