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

資訊專欄INFORMATION COLUMN

前端常用屬性/方法/命令積累

xcold / 2443人閱讀

摘要:定義表格中的表注內(nèi)容腳注樣式節(jié)標(biāo)簽描述屬性定義文檔的樣式信息。原始值是由從對(duì)象下來(lái)的所有對(duì)象繼承的。方法通常由在后臺(tái)自動(dòng)進(jìn)行調(diào)用,而不是顯式地處于代碼中。

HTML常用標(biāo)簽

其實(shí)在w3school上都有詳細(xì)的總結(jié)和描述,寫在這里是為了理清自己的思路,整理比較常用的標(biāo)簽。
原地址:http://www.w3school.com.cn/ta...




   


   //tag

基礎(chǔ)標(biāo)簽
標(biāo)簽 描述
定義文檔類型。
定義 HTML 文檔。
</td> <td>定義文檔的標(biāo)題。</td> </tr> <tr> <td><body></td> <td>定義文檔的主體。</td> </tr> <tr> <td><h1> to <h6></td> <td>定義 HTML 標(biāo)題,塊級(jí)元素。</td> </tr> <tr> <td>p</td> <td>定義段落,塊級(jí)元素。</td> </tr> <tr> <td>br</td> <td>定義簡(jiǎn)單的折行。</td> </tr> <tr> <td>hr</td> <td>定義水平線。</td> </tr> <tr> <td><!--...--></td> <td>定義注釋。</td> </tr> </tbody> </table> <b>格式標(biāo)簽</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> </tr></thead> <tbody> <tr> <td>b</td> <td>文本加粗</td> </tr> <tr> <td>strong</td> <td>語(yǔ)義化,文本加粗</td> </tr> <tr> <td>i</td> <td>文本傾斜</td> </tr> <tr> <td>em</td> <td>語(yǔ)義化,文本傾斜</td> </tr> <tr> <td>s</td> <td>文本添加刪除線(不贊成)</td> </tr> <tr> <td>del</td> <td>文本添加刪除線</td> </tr> <tr> <td>u</td> <td>文本添加下劃線(不贊成)</td> </tr> <tr> <td><ins></td> <td>文本添加下劃線</td> </tr> <tr> <td>center</td> <td>定義居中文本(不贊成)</td> </tr> <tr> <td>font</td> <td>定義文本的字體、顏色、尺寸(不建議)</td> </tr> <tr> <td>sup</td> <td>上標(biāo)文本</td> </tr> <tr> <td>sub</td> <td>下標(biāo)文本</td> </tr> </tbody> </table> <b>表單標(biāo)簽</b> <p>說(shuō)明:標(biāo)簽后面帶*,說(shuō)明是單標(biāo)簽</p> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>form</td> <td>為用戶輸入創(chuàng)建HTML表單,用于向服務(wù)器傳輸數(shù)據(jù),塊級(jí)元素</td> <td>action/method</td> </tr> <tr> <td>input*</td> <td>文本輸入框,行內(nèi)塊</td> <td>type(text/button/checkbox/password/radio/submit)/value</td> </tr> <tr> <td>textarea*</td> <td>多行文本輸入框</td> <td>rows/cols</td> </tr> <tr> <td>button*</td> <td>按鈕</td> <td>type="button"/value</td> </tr> <tr> <td>select</td> <td>下拉選擇列表,內(nèi)嵌option標(biāo)簽</td> <td>/</td> </tr> <tr> <td>option</td> <td>select選擇列表中的選項(xiàng)</td> <td>value</td> </tr> <tr> <td>optgroup</td> <td>選擇列表中選項(xiàng)的組合,不能選中,內(nèi)嵌option標(biāo)簽</td> <td>label="華北"</td> </tr> <tr> <td>label</td> <td>為input元素定義標(biāo)記</td> <td>for(類似id)</td> </tr> <tr> <td>fieldset</td> <td>在form中,定義圍繞表單中元素的邊框,可分類打包</td> <td>/</td> </tr> <tr> <td>legend</td> <td>為fieldset元素定義標(biāo)題</td> <td>/</td> </tr> </tbody> </table> <b>框架標(biāo)簽</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>frameset</td> <td>框架集,內(nèi)嵌frame</td> <td>rows/cols</td> </tr> <tr> <td>frame</td> <td>框架</td> <td>src</td> </tr> <tr> <td>noframes</td> <td>在frameset中添加非frame標(biāo)簽,用于在瀏覽器不支持frame的時(shí)候顯示文本,包括在body標(biāo)簽內(nèi)部</td> <td>/</td> </tr> <tr> <td>iframe</td> <td>創(chuàng)建包含另外一個(gè)文檔的內(nèi)聯(lián)框架(即行內(nèi)框架</td> <td>src/scrolling/width/height</td> </tr> </tbody> </table> <b>圖像標(biāo)簽</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>img*</td> <td>圖像,行內(nèi)塊</td> <td>src/alt(替代文本)</td> </tr> <tr> <td>canvas</td> <td>圖形容器,必須用JS腳本來(lái)繪制圖形</td> <td>width/height</td> </tr> </tbody> </table> <b>音頻/視頻</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>audio</td> <td>音頻</td> <td>src/controls(顯示控件)</td> </tr> <tr> <td>source*</td> <td>內(nèi)嵌于<audio controls>,定義多個(gè)媒介資源,由瀏覽器自動(dòng)選擇支持的類型</td> <td>src/type</td> </tr> <tr> <td>video</td> <td>視頻</td> <td>src/controls(顯示控件)</td> </tr> </tbody> </table> <b>鏈接</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>a</td> <td>超鏈接,行元素</td> <td>href</td> </tr> <tr> <td>link*</td> <td>鏈接外部樣式</td> <td>rel="stylesheet"/type="text/css"/href="main.css"</td> </tr> <tr> <td>nav</td> <td>導(dǎo)航鏈接,內(nèi)嵌a標(biāo)簽</td> <td>/</td> </tr> </tbody> </table> <b>列表</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>ul-li</td> <td>無(wú)序列表</td> <td>/</td> </tr> <tr> <td>ol-li</td> <td>有序列表</td> <td>/</td> </tr> <tr> <td>dl-dt-dd</td> <td>自定義列表</td> <td>/</td> </tr> </tbody> </table> <p><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmUG8?w=175&h=164");</script></p> <b>表格</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> </tr></thead> <tbody> <tr> <td><table></td> <td>定義表格</td> </tr> <tr> <td><caption></td> <td>定義表格標(biāo)題。</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><thead></td> <td>定義表格中的表頭內(nèi)容。</td> </tr> <tr> <td><tbody></td> <td>定義表格中的主體內(nèi)容。</td> </tr> <tr> <td><tfoot></td> <td>定義表格中的表注內(nèi)容(腳注)</td> </tr> </tbody> </table> <pre> <table> <thead> <tr> <th></th> </tr> </thead> <tbody> <tr> <td></td> </tr> </tbody> <tfoot> <tr> <td></td> </tr> </tfoot> </table></pre> <b>樣式/節(jié)</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td><style></td> <td>定義文檔的樣式信息。</td> <td>type="text/css"</td> </tr> <tr> <td><div></td> <td>定義文檔中的節(jié)。</td> <td> </td> </tr> <tr> <td><span></td> <td>定義文檔中的節(jié),組合行內(nèi)元素</td> <td> </td> </tr> <tr> <td><header></td> <td>定義 section 或 page 的頁(yè)眉。</td> <td> </td> </tr> <tr> <td><footer></td> <td>定義 section 或 page 的頁(yè)腳。</td> <td> </td> </tr> <tr> <td><section></td> <td>定義 section。</td> <td> </td> </tr> <tr> <td><article></td> <td>定義文章。</td> <td> </td> </tr> </tbody> </table> <b>元信息</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody><tr> <td>meta*</td> <td>頁(yè)面的元信息</td> <td>content(必須,http-equiv、name)/http-equiv/name</td> </tr></tbody> </table> <pre><meta name="keywords" content="Java培訓(xùn),web前端">//給SEO搜索引擎看的 <meta name="description" content="我們是正規(guī)的培訓(xùn)機(jī)構(gòu)XXX">//給用戶搜索看的簡(jiǎn)介 <meta name="http-equiv" content="5;http://www.baidu.com">//網(wǎng)頁(yè)重定向</pre> <b>編程</b> <table> <thead><tr> <th>標(biāo)簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody><tr> <td><script></td> <td>客戶端腳本</td> <td>type="text/javascript"</td> </tr></tbody> </table> <b>CSS常用屬性</b> <b>背景屬性</b> <pre>body { background: #00FF00 url(bgimage.gif) no-repeat fixed top;//簡(jiǎn)寫屬性,可設(shè)置background-color,background-image,background-repeat,background-attachment,background-position背景屬性 }</pre> <pre>body { background-image: url(bgimage.gif);//背景圖像 background-attachment: fixed;//背景圖像是否固定/隨著頁(yè)面其他部分滾動(dòng) background-repeat:no-repeat;//水平或垂直方向重復(fù)方式:repeat/repeat-x/repeat-y/no-repeat background-position:center;//背景圖像起始位置,top left center bottom right中的兩個(gè)組合,如果只規(guī)定一個(gè),另一個(gè)默認(rèn)為center background-size:80px 60px;//背景圖像寬度和高度,不設(shè)置則默認(rèn)為auto }</pre> <pre>body { background-color:yellow;//顏色名稱 } h1 { background-color:#00ff00;//十六進(jìn)制 } p { background-color:rgb(255,0,255);//rgb代碼 } div { background-color:transparent;//默認(rèn)值,透明 }</pre> <b>邊框?qū)傩?/b> <pre>p { border:5px solid red;//簡(jiǎn)寫屬性,順序:border-width border-style border-color }</pre> <pre>border-radius:25px;//四個(gè)角的形狀,也可以設(shè)置某個(gè)角的形狀,栗子:border-top-left-radius</pre> <pre>div { box-shadow: 10px 10px 5px #888888;//添加陰影 } //box-shadow: h-shadow v-shadow blur spread color inset; //水平陰影,垂直隱形,(模糊距離),(陰影尺寸),(陰影顏色),()</pre> <pre>border-top/right/bottom/left:;//可以設(shè)置多帶帶邊框的屬性</pre> <pre>div { -webkit-border-image:url(border.png) 30 30 round; /* Safari 5 */ -o-border-image:url(border.png) 30 30 round; /* Opera */ border-image:url(border.png) 30 30 round; //border-image-source/slice/width/outset/repeat }</pre> <b>CSS字體屬性</b> <pre>font: font-style font-weight font-size/line-height font-family;//文字大小和字體為必寫項(xiàng)</pre> <pre>font-weight:normal(400)|bold(700)|bolder|lighter|100-900</pre> <b>CSS 外邊距屬性(Margin)</b> <pre>margin: top right bottom left; margin: top left/right bottom; margin: top/bottom left/right;</pre> <b>CSS 內(nèi)邊距屬性(Padding)</b> <pre>padding: top right bottom left; padding: top left/right bottom; padding: top/bottom left/right;</pre> <p><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmUVj?w=752&h=475");</script></p> <p><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmUVl?w=573&h=572");</script></p> <b>transform</b> <pre>div { transform:rotate(7deg); -ms-transform:rotate(7deg); /* IE 9 */ -moz-transform:rotate(7deg); /* Firefox */ -webkit-transform:rotate(7deg); /* Safari 和 Chrome */ -o-transform:rotate(7deg); /* Opera */ }</pre> <p><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmUVr?w=284&h=158");</script></p> <b>JS</b> <b>String</b> <b>屬性</b> <p><strong>legth</strong></p> <pre>var str = "123"; str.length;//3</pre> <b>方法</b> <p><strong>substring()</strong></p> <pre>stringObject.substring(start,stop) //提取子字符串,從 start 處到 stop-1 處的所有字符 //如果 start 比 stop 大,那么該方法在提取子串之前會(huì)先交換這兩個(gè)參數(shù) //不接受負(fù)的參數(shù) var str="How are you doing today?" str.substring(2,3);//"ow"</pre> <p><strong>slice()</strong></p> <pre>stringObject.slice(start,end) //從 start 開(kāi)始(包括 start)到 end 結(jié)束(不包括 end)為止的所有字符 //如果start/end是負(fù)數(shù),則該參數(shù)規(guī)定的是從字符串的尾部開(kāi)始算起的位置。也就是說(shuō),-1 指字符串的最后一個(gè)字符,-2 指倒數(shù)第二個(gè)字符,以此類推。 var str="How are you doing today?" str.slice(-3,-1)//"ay" //(-1,-3)返回的時(shí)"" </pre> <p><strong>split()</strong></p> <pre>stringObject.split(separator,howmany) //返回一個(gè)字符串?dāng)?shù)組,從參數(shù)separator指定的地方分割 stringObject //如果 separator 是包含子表達(dá)式的正則表達(dá)式,那么返回的數(shù)組中包括與這些子表達(dá)式匹配的字串(但不包括與整個(gè)正則表達(dá)式匹配的文本)</pre> <p>注釋:String.split() 執(zhí)行的操作與 Array.join 執(zhí)行的操作是相反的</p> <p><strong>indexOf()</strong></p> <pre>stringObject.indexOf(searchvalue,fromindex) //檢索指定的字符串值searchvalue在字符串中首次出現(xiàn)的位置,fromindex指的是開(kāi)始檢索的位置 //不存在的時(shí)候返回-1</pre> <p><strong>lastindexOf()</strong></p> <pre>stringObject.lastIndexOf(searchvalue,fromindex) //返回一個(gè)指定的字符串值最后出現(xiàn)的位置,在一個(gè)字符串中的指定位置從后向前搜索。</pre> <p><strong>charAt()</strong></p> <pre>stringObject.charAt(index) //返回指定位置的字符</pre> <p><strong>contact()</strong></p> <pre>stringObject.concat(stringX,stringX,...,stringX) //連接兩個(gè)或多個(gè)字符串</pre> <p><strong>match()</strong></p> <pre>stringObject.match(searchvalue) stringObject.match(regexp) //在字符串內(nèi)檢索指定的值,或找到一個(gè)或多個(gè)正則表達(dá)式的匹配. //與indexOf()不同,match返回的是匹配到的值,而indexOf返回的是位置</pre> <p><strong>replace()</strong></p> <pre>stringObject.replace(regexp/substr,replacement) //在字符串中用一些字符替換另一些字符,或替換一個(gè)與正則表達(dá)式匹配的子串 //對(duì)大小寫不敏感</pre> <p><strong>search()</strong></p> <pre>stringObject.search(regexp) //返回stringObject 中第一個(gè)與 regexp 相匹配的子串的起始位置 //從字符串的開(kāi)始進(jìn)行檢索</pre> <p><strong>valueOf()</strong></p> <pre>stringObject.valueOf() //valueOf() 方法可返回 String 對(duì)象的原始值。 //原始值是由從 String 對(duì)象下來(lái)的所有對(duì)象繼承的。 //valueOf() 方法通常由 JavaScript 在后臺(tái)自動(dòng)進(jìn)行調(diào)用,而不是顯式地處于代碼中。</pre> <p><strong>toString()</strong></p> <pre>stringObject.toString() //返回原始字符串值</pre> <p>今日頭條面試題:<br>www.baidu.com.cn==>cn.com.baidu.www</p> <pre>var arry = str.split(".")-->var newArry = arry.reverse()-->newArry.join(".")</pre> <b>Array</b> <p>(2019.1.7更)</p> <b>創(chuàng)建數(shù)組的方法</b> <p><strong>數(shù)組字面量法</strong></p> <pre>var array = [1,2,3];</pre> <p><strong>構(gòu)造函數(shù)法</strong></p> <pre>var array = new Array(/n/1,2,3);</pre> <b>屬性</b> <p><strong>length</strong></p> <pre>array.length;</pre> <b>方法</b> <p><strong>concat()</strong></p> <pre>arrayObject.concat(arrayX,arrayX,......,arrayX) //在arrayObject后面連接兩個(gè)或多個(gè)數(shù)組,返回一個(gè)新數(shù)組 //不改變現(xiàn)有數(shù)組</pre> <p><strong>join()</strong></p> <pre>arrayObject.join(separator) //以separator作為分隔符,把數(shù)組中的元素放入字符串 //與String對(duì)象的split()方法相反</pre> <p><strong>pop()</strong></p> <pre>arrayObject.pop() //刪除數(shù)組的最后一個(gè)元素,并返回該元素</pre> <p><strong>shift()</strong></p> <pre>arrayObject.shift() //刪除數(shù)組的第一個(gè)元素,并返回該元素</pre> <p><strong>push()</strong></p> <pre>arrayObject.push(newelement1,newelement2,....,newelementX) //添加一個(gè)或更多元素到數(shù)組的末尾,并返回新的數(shù)組長(zhǎng)度</pre> <p><strong>unshift()</strong></p> <pre>arrayObject.unshift(newelement1,newelement2,....,newelementX) //添加一個(gè)或更多元素到數(shù)組的開(kāi)頭,并返回新的數(shù)組長(zhǎng)度</pre> <p><strong>reverse()</strong></p> <pre>arrayObject.reverse() //反轉(zhuǎn)數(shù)組 //注意:改變的是原來(lái)的數(shù)組,不會(huì)創(chuàng)建新數(shù)組</pre> <p><strong>slice()</strong></p> <pre>arrayObject.slice(start,end) //返回已有數(shù)組從start到end(不包括)的元素 //返回一個(gè)子數(shù)組,不改變?cè)瓟?shù)組</pre> <p><strong>splice()</strong></p> <pre>arrayObject.splice(index,howmany,item1,.....,itemX) //刪除從index開(kāi)始的howmany(可以為0)個(gè)元素,并從刪除的位置開(kāi)始添加新的元素到原數(shù)組 //返回?cái)?shù)組,改變?cè)瓟?shù)組</pre> <p><strong>sort()</strong></p> <pre>arrayObject.sort(sortby) //對(duì)數(shù)組元素排序,在原數(shù)組上進(jìn)行 //默認(rèn)按照字母順序進(jìn)行排序</pre> <p>如果想按照其他標(biāo)準(zhǔn)進(jìn)行排序,就需要提供比較函數(shù),該函數(shù)要比較兩個(gè)值,然后返回一個(gè)用于說(shuō)明這兩個(gè)值的相對(duì)順序的數(shù)字。比較函數(shù)應(yīng)該具有兩個(gè)參數(shù) a 和 b,其返回值如下:</p> <pre>- 若 a 小于 b,在排序后的數(shù)組中 a 應(yīng)該出現(xiàn)在 b 之前,則返回一個(gè)小于 0 的值。 - 若 a 等于 b,則返回 0。 - 若 a 大于 b,則返回一個(gè)大于 0 的值。</pre> <pre>function sortNum(a,b) { return a - b;//升序 //return b - a;//降序 } array.sort(sortNum);//數(shù)值字符串?dāng)?shù)組按照數(shù)值的大小對(duì)數(shù)字排序</pre> <p><strong>toString()</strong></p> <pre>array.toString() //把數(shù)組轉(zhuǎn)換為字符串,并返回該字符串</pre> <p><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmQha?w=209&h=92");</script><br><strong>valueOf()</strong></p> <pre>array.valueOf() //返回?cái)?shù)組對(duì)象的原始值</pre> <p><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmQjf?w=238&h=140");</script><br><script type="text/javascript">showImg("https://segmentfault.com/img/bVbmQhL?w=204&h=110");</script></p> <b>對(duì)比String和Array</b> <table> <thead><tr> <th>String</th> <th>Array</th> </tr></thead> <tbody> <tr> <td>slice</td> <td>slice</td> </tr> <tr> <td>split</td> <td>join</td> </tr> <tr> <td>concat</td> <td>concat</td> </tr> </tbody> </table> <p>注意:Array里面slice和splice的區(qū)別——slice返回子數(shù)組,且不會(huì)改變?cè)瓟?shù)組;splice從某個(gè)位置刪除數(shù)組內(nèi)元素,并添加新元素,改變?cè)瓟?shù)組。</p> </div> <div id="9flvjrv" class="mt-64 tags-seach" > <div id="nxx7nhz" class="tags-info"> <a style="width:120px;" title="云服務(wù)器" href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務(wù)器</a> <a style="width:120px;" title="GPU云服務(wù)器" href="http://specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務(wù)器</a> <a style="width:120px;" title="屬性定義方法" href="http://specialneedsforspecialkids.com/yun/tag/shuxingdingyifangfa/">屬性定義方法</a> <a style="width:120px;" title="linux常用常用命令" href="http://specialneedsforspecialkids.com/yun/tag/linuxchangyongchangyongmingling/">linux常用常用命令</a> <a style="width:120px;" title="方法屬性 java" href="http://specialneedsforspecialkids.com/yun/tag/fangfashuxing java/">方法屬性 java</a> <a style="width:120px;" title="linux命令常用命令" href="http://specialneedsforspecialkids.com/yun/tag/linuxminglingchangyongmingling/">linux命令常用命令</a> </div> </div> <div id="bl755zt" 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://specialneedsforspecialkids.com/yun/100742.html</p> </div> <ul class="pre-next-page"> <li id="jvv5p57" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/100741.html">上一篇:【刷算法】LeetCode.236-二叉樹的最近公共祖先</a></li> <li id="pllxhn7" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/100743.html">下一篇:入門nodeJs(第三課)</a></li> </ul> </div> <div id="jjv57bd" 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="tf57h7j" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/117184.html"><b><em>前端</em><em>常用</em><em>屬性</em>/<em>方法</em>/<em>命令</em><em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:定義表格中的表注內(nèi)容腳注樣式節(jié)標(biāo)簽描述屬性定義文檔的樣式信息。原始值是由從對(duì)象下來(lái)的所有對(duì)象繼承的。方法通常由在后臺(tái)自動(dòng)進(jìn)行調(diào)用,而不是顯式地處于代碼中。 HTML常用標(biāo)簽 其實(shí)在w3school上都有詳細(xì)的總結(jié)和描述,寫在這里是為了理清自己的思路,整理比較常用的標(biāo)簽。原地址:http://www.w3school.com.cn/ta... //tag 基礎(chǔ)...</p> <div id="pxr5fln" class="com_white-left-info"> <div id="jrzjtlr" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-760.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/07/small_000000760.jpg" alt=""><span id="ttzhr5d" class="layui-hide64">wupengyu</span></a> <time datetime="">2019-08-30 15:55</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="7z7vtnr" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/53530.html"><b><em>前端</em><em>常用</em><em>屬性</em>/<em>方法</em>/<em>命令</em><em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:定義表格中的表注內(nèi)容腳注樣式節(jié)標(biāo)簽描述屬性定義文檔的樣式信息。原始值是由從對(duì)象下來(lái)的所有對(duì)象繼承的。方法通常由在后臺(tái)自動(dòng)進(jìn)行調(diào)用,而不是顯式地處于代碼中。 HTML常用標(biāo)簽 其實(shí)在w3school上都有詳細(xì)的總結(jié)和描述,寫在這里是為了理清自己的思路,整理比較常用的標(biāo)簽。原地址:http://www.w3school.com.cn/ta... //tag 基礎(chǔ)...</p> <div id="lzvtfl5" class="com_white-left-info"> <div id="tdbzlzp" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-136.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/01/small_000000136.jpg" alt=""><span id="l7zh57d" class="layui-hide64">lastSeries</span></a> <time datetime="">2019-08-02 14:02</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="fnlvdvp" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/97721.html"><b><em>前端</em><em>常用</em>函數(shù)<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:參數(shù)對(duì)象數(shù)組,需要排序的目標(biāo)要按排序的對(duì)象屬性名稱排序的方向,為從小到大是否使用模式,默認(rèn)為,注意,使用該參數(shù)時(shí)前面的必須傳入。使用場(chǎng)景想要排列一個(gè)對(duì)象數(shù)組,條件是根據(jù)這些對(duì)象中的某個(gè)屬性。 cdd-lib 個(gè)人常用庫(kù)積累 說(shuō)明 本庫(kù)是完全的es2015模塊語(yǔ)法,也使用了ts源碼。所以使用commonjs方式導(dǎo)致不可用。 路徑和引用說(shuō)明 /index.js 根路徑的index.js文件...</p> <div id="dzxhtdf" class="com_white-left-info"> <div id="p7t5xdx" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-863.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/08/small_000000863.jpg" alt=""><span id="bvtrpnr" class="layui-hide64">ACb0y</span></a> <time datetime="">2019-08-23 11:57</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="77vvfrz" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/115635.html"><b><em>常用</em><em>前端</em>知識(shí)<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:閉包的理解使用閉包主要是為了設(shè)計(jì)私有的方法和變量。只在中存放不敏感數(shù)據(jù),即使被盜也不會(huì)有重大損失。每個(gè)最多只能有條,每個(gè)長(zhǎng)度不能超過(guò),否則會(huì)被截掉。有些狀態(tài)不可能保存在客戶端。例如,為了防止重復(fù)提交表單,我們需要在服務(wù)器端保存一個(gè)計(jì)數(shù)器。 閉包的理解 使用閉包主要是為了設(shè)計(jì)私有的方法和變量。 優(yōu)點(diǎn)是可以避免全局變量的污染, 缺點(diǎn)是閉包會(huì)常駐內(nèi)存,會(huì)增大內(nèi)存使用量,使用不當(dāng)很容易造成內(nèi)存...</p> <div id="zfbl7hj" class="com_white-left-info"> <div id="fvfbzfj" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-1678.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/16/small_000001678.jpg" alt=""><span id="zr7f7dv" class="layui-hide64">B0B0</span></a> <time datetime="">2019-08-30 13:55</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="nrbl7xd" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/107180.html"><b><em>常用</em><em>前端</em>知識(shí)<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:閉包的理解使用閉包主要是為了設(shè)計(jì)私有的方法和變量。只在中存放不敏感數(shù)據(jù),即使被盜也不會(huì)有重大損失。每個(gè)最多只能有條,每個(gè)長(zhǎng)度不能超過(guò),否則會(huì)被截掉。有些狀態(tài)不可能保存在客戶端。例如,為了防止重復(fù)提交表單,我們需要在服務(wù)器端保存一個(gè)計(jì)數(shù)器。 閉包的理解 使用閉包主要是為了設(shè)計(jì)私有的方法和變量。 優(yōu)點(diǎn)是可以避免全局變量的污染, 缺點(diǎn)是閉包會(huì)常駐內(nèi)存,會(huì)增大內(nèi)存使用量,使用不當(dāng)很容易造成內(nèi)存...</p> <div id="n7rpn5j" class="com_white-left-info"> <div id="7xdnlpv" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-1036.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/10/small_000001036.jpg" alt=""><span id="n75tpxr" class="layui-hide64">haobowd</span></a> <time datetime="">2019-08-26 11:35</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="fx5nnrl" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評(píng)論</span></h3> <div id="ndbxtbf" class="xcp-publish-main flex_box_zd"> <div id="tljhrjr" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評(píng)論</a> </div> </div> </div> <div id="hb5llbh" class="site-box-content"> <div id="thb5pf7" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評(píng)論</span></h3> </div> <div id="xlfp5dt" class="pages"></ul></div> </div> </div> <div id="9jfzltx" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="tvf5xdh" class=""> <div id="fhbjrzr" class="com_layuiright-box user-msgbox"> <a href="http://specialneedsforspecialkids.com/yun/u-657.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/06/small_000000657.jpg" alt=""></a> <h3><a href="http://specialneedsforspecialkids.com/yun/u-657.html" rel="nofollow">xcold</a></h3> <h6>男<span>|</span>高級(jí)講師</h6> <div id="bfnv5zz" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(657)" id="attenttouser_657" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="7rpddv5" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://specialneedsforspecialkids.com/yun/ut-657.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/123722.html">【LeetCode 二叉樹專項(xiàng)】把二叉搜索樹轉(zhuǎn)換為累加樹(538)</a></h3> <p>閱讀 3196<span>·</span>2021-11-18 10:02</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/122249.html">UCloud金秋狂歡盛典-烏蘭察布上新首促,快杰共享型低至3元/1個(gè)月或37元/年-老劉博客</a></h3> <p>閱讀 1446<span>·</span>2021-10-12 10:08</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/122120.html">Docker安裝InfluxDB_用戶名密碼和策略使用</a></h3> <p>閱讀 1239<span>·</span>2021-10-11 10:58</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/122098.html">安裝鴻蒙開(kāi)發(fā)工具-DevEco Studio</a></h3> <p>閱讀 1269<span>·</span>2021-10-11 10:57</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/121761.html">golang實(shí)現(xiàn)儀表控制-visa32.dll方式</a></h3> <p>閱讀 1167<span>·</span>2021-10-08 10:04</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/121543.html">【C++從0到1】新手都能看懂的C++入門(上篇),建議收藏</a></h3> <p>閱讀 2121<span>·</span>2021-09-29 09:35</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/120585.html">彈性云主機(jī)是什么原因-電信云主機(jī)是什么?</a></h3> <p>閱讀 773<span>·</span>2021-09-22 15:44</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/119030.html">微軟宣布將于 9 月 22 日舉行 Surface 和 Windows 11 活動(dòng)</a></h3> <p>閱讀 1269<span>·</span>2021-09-03 10:30</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="r7jv57d" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動(dòng)</span></h6> <div id="fflr77r" class="com_adbox"> <div id="z577zhn" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://specialneedsforspecialkids.com/yun/data/attach/240625/2rTjEHmi.png" alt="云服務(wù)器"> </a> </div> <div> <a href="http://specialneedsforspecialkids.com/site/product/gpu.html" rel="nofollow"> <img src="http://specialneedsforspecialkids.com/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務(wù)器"> </a> </div> </div> </div> </div> <!-- banner結(jié)束 --> <div id="lrf7xrl" class="adhtml"> </div> <script> $(function(){ $.ajax({ type: "GET", url:"http://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="ld7vfld" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="t7nxlr5" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="j7lx7lf" id="payread"> <div id="b7rpdxb" class="layui-form-item">閱讀需要支付1元查看</div> <div id="7nl7j7v" 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://specialneedsforspecialkids.com/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <script src="http://specialneedsforspecialkids.com/yun/static/js/neweditor/code/highlight.pack.js" type="text/javascript"></script> <script src="http://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://specialneedsforspecialkids.com/yun/index.php?topic/ajaxhassupport/" + tid, cache: false, success: function(hassupport){ if (hassupport != '1'){ $.ajax({ type: "GET", cache:false, url: "http://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://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="rxttnfx" class="layui-container"> <div id="t5lzjpr" class="flex_box_zd"> <div id="b5dbhz7" class="left-footer"> <h6><a href="http://specialneedsforspecialkids.com/"><img src="http://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="d7x757r" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務(wù)</h6> <p><a href="http://specialneedsforspecialkids.com/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://specialneedsforspecialkids.com/site/ucan/onlineclass/">UCan線上公開(kāi)課</a></p> <p><a href="http://specialneedsforspecialkids.com/site/solutions.html" >行業(yè)解決方案</a></p> <p><a href="http://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://specialneedsforspecialkids.com/yun/column/index.html">專欄文章</a></p> <p><a href="http://specialneedsforspecialkids.com/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見(jiàn)問(wèn)題</h6> <p><a href="http://specialneedsforspecialkids.com/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/recent/" >新聞動(dòng)態(tài)</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/report/">媒體動(dòng)態(tài)</a></p> <p><a href="http://specialneedsforspecialkids.com/site/cases.html">客戶案例</a></p> <p><a href="http://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="th5zjdn" 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://specialneedsforspecialkids.com/" title="国产xxxx99真实实拍">国产xxxx99真实实拍</a> <div class="friend-links"> <a href="http://belistarlp.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="75njx" class="pl_css_ganrao" style="display: none;"><sup id="75njx"><tt id="75njx"></tt></sup><sup id="75njx"><label id="75njx"><nobr id="75njx"><em id="75njx"></em></nobr></label></sup><label id="75njx"><video id="75njx"></video></label><output id="75njx"><sub id="75njx"></sub></output><meter id="75njx"></meter><ins id="75njx"><address id="75njx"><p id="75njx"><sup id="75njx"></sup></p></address></ins><label id="75njx"><video id="75njx"></video></label><label id="75njx"><rp id="75njx"><font id="75njx"><legend id="75njx"></legend></font></rp></label><u id="75njx"><mark id="75njx"><acronym id="75njx"><legend id="75njx"></legend></acronym></mark></u><th id="75njx"><b id="75njx"><progress id="75njx"><acronym id="75njx"></acronym></progress></b></th><strong id="75njx"><optgroup id="75njx"><output id="75njx"><sub id="75njx"></sub></output></optgroup></strong><meter id="75njx"></meter><dfn id="75njx"><output id="75njx"></output></dfn><sub id="75njx"><strike id="75njx"></strike></sub><listing id="75njx"><small id="75njx"><menuitem id="75njx"><span id="75njx"></span></menuitem></small></listing><dfn id="75njx"><output id="75njx"><span id="75njx"><big id="75njx"></big></span></output></dfn><dfn id="75njx"><u id="75njx"></u></dfn><p id="75njx"><var id="75njx"></var></p><small id="75njx"></small><ins id="75njx"><font id="75njx"></font></ins><acronym id="75njx"><p id="75njx"><dfn id="75njx"><form id="75njx"></form></dfn></p></acronym><dfn id="75njx"></dfn><p id="75njx"><dfn id="75njx"></dfn></p><th id="75njx"><b id="75njx"><mark id="75njx"><form id="75njx"></form></mark></b></th><style id="75njx"><nobr id="75njx"><small id="75njx"><menuitem id="75njx"></menuitem></small></nobr></style><span id="75njx"><thead id="75njx"></thead></span><form id="75njx"><p id="75njx"><dfn id="75njx"><form id="75njx"></form></dfn></p></form><legend id="75njx"></legend><ruby id="75njx"></ruby><legend id="75njx"><var id="75njx"><form id="75njx"><rp id="75njx"></rp></form></var></legend><var id="75njx"><form id="75njx"><rp id="75njx"><font id="75njx"></font></rp></form></var><form id="75njx"><legend id="75njx"></legend></form><optgroup id="75njx"><output id="75njx"><sub id="75njx"><big id="75njx"></big></sub></output></optgroup><u id="75njx"><mark id="75njx"><form id="75njx"><p id="75njx"></p></form></mark></u><font id="75njx"></font><output id="75njx"><span id="75njx"><strike id="75njx"><strong id="75njx"></strong></strike></span></output><track id="75njx"><thead id="75njx"><thead id="75njx"><label id="75njx"></label></thead></thead></track><meter id="75njx"></meter><div id="75njx"></div><acronym id="75njx"><legend id="75njx"></legend></acronym><i id="75njx"><nobr id="75njx"><small id="75njx"><output id="75njx"></output></small></nobr></i><u id="75njx"><mark id="75njx"><form id="75njx"><legend id="75njx"></legend></form></mark></u><pre id="75njx"><track id="75njx"><tt id="75njx"><mark id="75njx"></mark></tt></track></pre><output id="75njx"><sub id="75njx"></sub></output><strong id="75njx"></strong><label id="75njx"></label><label id="75njx"></label><form id="75njx"><p id="75njx"></p></form><address id="75njx"><legend id="75njx"></legend></address><video id="75njx"><small id="75njx"><div id="75njx"><ol id="75njx"></ol></div></small></video><i id="75njx"><video id="75njx"><small id="75njx"><div id="75njx"></div></small></video></i><span id="75njx"></span><output id="75njx"><sub id="75njx"></sub></output><meter id="75njx"><ol id="75njx"></ol></meter><listing id="75njx"><dfn id="75njx"><output id="75njx"><sub id="75njx"></sub></output></dfn></listing><div id="75njx"></div><ol id="75njx"><style id="75njx"></style></ol><b id="75njx"><mark id="75njx"><form id="75njx"><p id="75njx"></p></form></mark></b><sup id="75njx"></sup><output id="75njx"><sub id="75njx"><thead id="75njx"><dl id="75njx"></dl></thead></sub></output><acronym id="75njx"><legend id="75njx"><th id="75njx"><tt id="75njx"></tt></th></legend></acronym><font id="75njx"><legend id="75njx"><sup id="75njx"><style id="75njx"></style></sup></legend></font><rp id="75njx"></rp><ruby id="75njx"><sub id="75njx"></sub></ruby><rp id="75njx"></rp><tt id="75njx"><big id="75njx"><dl id="75njx"><pre id="75njx"></pre></dl></big></tt><ruby id="75njx"><thead id="75njx"></thead></ruby><output id="75njx"><pre id="75njx"><i id="75njx"><nobr id="75njx"></nobr></i></pre></output><strong id="75njx"><optgroup id="75njx"><output id="75njx"><span id="75njx"></span></output></optgroup></strong><strike id="75njx"></strike><i id="75njx"></i><font id="75njx"><legend id="75njx"><sup id="75njx"><label id="75njx"></label></sup></legend></font><small id="75njx"><menuitem id="75njx"></menuitem></small><ol id="75njx"></ol><listing id="75njx"><small id="75njx"></small></listing><ins id="75njx"></ins><i id="75njx"><nobr id="75njx"><dfn id="75njx"><output id="75njx"></output></dfn></nobr></i><div id="75njx"><pre id="75njx"></pre></div><optgroup id="75njx"><ruby id="75njx"><sub id="75njx"><big id="75njx"></big></sub></ruby></optgroup><sub id="75njx"><thead id="75njx"></thead></sub><meter id="75njx"></meter><legend id="75njx"></legend><th id="75njx"><b id="75njx"><mark id="75njx"><form id="75njx"></form></mark></b></th><dfn id="75njx"><menuitem id="75njx"></menuitem></dfn><big id="75njx"><dl id="75njx"></dl></big><sub id="75njx"><thead id="75njx"></thead></sub><strike id="75njx"><listing id="75njx"><dfn id="75njx"><output id="75njx"></output></dfn></listing></strike><dfn id="75njx"><b id="75njx"></b></dfn><strong id="75njx"></strong><pre id="75njx"><track id="75njx"><tt id="75njx"><big id="75njx"></big></tt></track></pre><font id="75njx"><div id="75njx"></div></font><menuitem id="75njx"></menuitem><mark id="75njx"><form id="75njx"></form></mark><output id="75njx"></output><form id="75njx"><rp id="75njx"></rp></form><strike id="75njx"></strike><label id="75njx"><video id="75njx"></video></label><p id="75njx"><var id="75njx"></var></p><progress id="75njx"><acronym id="75njx"></acronym></progress><video id="75njx"><small id="75njx"><menuitem id="75njx"><span id="75njx"></span></menuitem></small></video><pre id="75njx"></pre><video id="75njx"><em id="75njx"></em></video><sub id="75njx"><thead id="75njx"></thead></sub><div id="75njx"><ol id="75njx"><label id="75njx"><video id="75njx"></video></label></ol></div><legend id="75njx"><sup id="75njx"><label id="75njx"><video id="75njx"></video></label></sup></legend><legend id="75njx"><sup id="75njx"><form id="75njx"><video id="75njx"></video></form></sup></legend><pre id="75njx"><style id="75njx"></style></pre><div id="75njx"><sup id="75njx"><label id="75njx"><video id="75njx"></video></label></sup></div><rp id="75njx"></rp><big id="75njx"><dl id="75njx"></dl></big><div id="75njx"><pre id="75njx"><label id="75njx"><video id="75njx"></video></label></pre></div><output id="75njx"><sub id="75njx"></sub></output><th id="75njx"><tt id="75njx"><progress id="75njx"><form id="75njx"></form></progress></tt></th><track id="75njx"><tt id="75njx"><progress id="75njx"><acronym id="75njx"></acronym></progress></tt></track><dfn id="75njx"></dfn><ins id="75njx"></ins><form id="75njx"><ins id="75njx"><address id="75njx"><legend id="75njx"></legend></address></ins></form><acronym id="75njx"><legend id="75njx"><th id="75njx"><u id="75njx"></u></th></legend></acronym><sub id="75njx"><strike id="75njx"></strike></sub><strong id="75njx"><dfn id="75njx"><output id="75njx"><span id="75njx"></span></output></dfn></strong><ol id="75njx"></ol><p id="75njx"><dfn id="75njx"></dfn></p><b id="75njx"><mark id="75njx"></mark></b><th id="75njx"></th><b id="75njx"><mark id="75njx"></mark></b><meter id="75njx"></meter><rp id="75njx"><address id="75njx"></address></rp><style id="75njx"><video id="75njx"><em id="75njx"><menuitem id="75njx"></menuitem></em></video></style><form id="75njx"><ins id="75njx"><address id="75njx"><div id="75njx"></div></address></ins></form><span id="75njx"></span><tt id="75njx"></tt><b id="75njx"><progress id="75njx"></progress></b><acronym id="75njx"><legend id="75njx"></legend></acronym><font id="75njx"><legend id="75njx"><sup id="75njx"><style id="75njx"></style></sup></legend></font><progress id="75njx"></progress><nobr id="75njx"></nobr><th id="75njx"></th><dl id="75njx"><pre id="75njx"><track id="75njx"><b id="75njx"></b></track></pre></dl><output id="75njx"></output><thead id="75njx"><label id="75njx"></label></thead><pre id="75njx"><style id="75njx"><nobr id="75njx"><em id="75njx"></em></nobr></style></pre><b id="75njx"></b><listing id="75njx"></listing><ol id="75njx"></ol><div id="75njx"><sup id="75njx"><label id="75njx"><nobr id="75njx"></nobr></label></sup></div><legend id="75njx"></legend><var id="75njx"><form id="75njx"><ins id="75njx"><font id="75njx"></font></ins></form></var><label id="75njx"></label><div id="75njx"><sup id="75njx"><label id="75njx"><video id="75njx"></video></label></sup></div><dfn id="75njx"><u id="75njx"></u></dfn></div> <script src="http://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>