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

資訊專欄INFORMATION COLUMN

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

lastSeries / 2958人閱讀

摘要:定義表格中的表注內容腳注樣式節標簽描述屬性定義文檔的樣式信息。原始值是由從對象下來的所有對象繼承的。方法通常由在后臺自動進行調用,而不是顯式地處于代碼中。

HTML常用標簽

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




   


   //tag

基礎標簽
標簽 描述
定義文檔類型。
定義 HTML 文檔。
</td> <td>定義文檔的標題。</td> </tr> <tr> <td><body></td> <td>定義文檔的主體。</td> </tr> <tr> <td><h1> to <h6></td> <td>定義 HTML 標題,塊級元素。</td> </tr> <tr> <td>p</td> <td>定義段落,塊級元素。</td> </tr> <tr> <td>br</td> <td>定義簡單的折行。</td> </tr> <tr> <td>hr</td> <td>定義水平線。</td> </tr> <tr> <td><!--...--></td> <td>定義注釋。</td> </tr> </tbody> </table> <b>格式標簽</b> <table> <thead><tr> <th>標簽</th> <th>描述</th> </tr></thead> <tbody> <tr> <td>b</td> <td>文本加粗</td> </tr> <tr> <td>strong</td> <td>語義化,文本加粗</td> </tr> <tr> <td>i</td> <td>文本傾斜</td> </tr> <tr> <td>em</td> <td>語義化,文本傾斜</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>上標文本</td> </tr> <tr> <td>sub</td> <td>下標文本</td> </tr> </tbody> </table> <b>表單標簽</b> <p>說明:標簽后面帶*,說明是單標簽</p> <table> <thead><tr> <th>標簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>form</td> <td>為用戶輸入創建HTML表單,用于向服務器傳輸數據,塊級元素</td> <td>action/method</td> </tr> <tr> <td>input*</td> <td>文本輸入框,行內塊</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>下拉選擇列表,內嵌option標簽</td> <td>/</td> </tr> <tr> <td>option</td> <td>select選擇列表中的選項</td> <td>value</td> </tr> <tr> <td>optgroup</td> <td>選擇列表中選項的組合,不能選中,內嵌option標簽</td> <td>label="華北"</td> </tr> <tr> <td>label</td> <td>為input元素定義標記</td> <td>for(類似id)</td> </tr> <tr> <td>fieldset</td> <td>在form中,定義圍繞表單中元素的邊框,可分類打包</td> <td>/</td> </tr> <tr> <td>legend</td> <td>為fieldset元素定義標題</td> <td>/</td> </tr> </tbody> </table> <b>框架標簽</b> <table> <thead><tr> <th>標簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>frameset</td> <td>框架集,內嵌frame</td> <td>rows/cols</td> </tr> <tr> <td>frame</td> <td>框架</td> <td>src</td> </tr> <tr> <td>noframes</td> <td>在frameset中添加非frame標簽,用于在瀏覽器不支持frame的時候顯示文本,包括在body標簽內部</td> <td>/</td> </tr> <tr> <td>iframe</td> <td>創建包含另外一個文檔的內聯框架(即行內框架</td> <td>src/scrolling/width/height</td> </tr> </tbody> </table> <b>圖像標簽</b> <table> <thead><tr> <th>標簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>img*</td> <td>圖像,行內塊</td> <td>src/alt(替代文本)</td> </tr> <tr> <td>canvas</td> <td>圖形容器,必須用JS腳本來繪制圖形</td> <td>width/height</td> </tr> </tbody> </table> <b>音頻/視頻</b> <table> <thead><tr> <th>標簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>audio</td> <td>音頻</td> <td>src/controls(顯示控件)</td> </tr> <tr> <td>source*</td> <td>內嵌于<audio controls>,定義多個媒介資源,由瀏覽器自動選擇支持的類型</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>標簽</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>導航鏈接,內嵌a標簽</td> <td>/</td> </tr> </tbody> </table> <b>列表</b> <table> <thead><tr> <th>標簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody> <tr> <td>ul-li</td> <td>無序列表</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>標簽</th> <th>描述</th> </tr></thead> <tbody> <tr> <td><table></td> <td>定義表格</td> </tr> <tr> <td><caption></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><thead></td> <td>定義表格中的表頭內容。</td> </tr> <tr> <td><tbody></td> <td>定義表格中的主體內容。</td> </tr> <tr> <td><tfoot></td> <td>定義表格中的表注內容(腳注)</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>樣式/節</b> <table> <thead><tr> <th>標簽</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>定義文檔中的節。</td> <td> </td> </tr> <tr> <td><span></td> <td>定義文檔中的節,組合行內元素</td> <td> </td> </tr> <tr> <td><header></td> <td>定義 section 或 page 的頁眉。</td> <td> </td> </tr> <tr> <td><footer></td> <td>定義 section 或 page 的頁腳。</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>標簽</th> <th>描述</th> <th>屬性</th> </tr></thead> <tbody><tr> <td>meta*</td> <td>頁面的元信息</td> <td>content(必須,http-equiv、name)/http-equiv/name</td> </tr></tbody> </table> <pre><meta name="keywords" content="Java培訓,web前端">//給SEO搜索引擎看的 <meta name="description" content="我們是正規的培訓機構XXX">//給用戶搜索看的簡介 <meta name="http-equiv" content="5;http://www.baidu.com">//網頁重定向</pre> <b>編程</b> <table> <thead><tr> <th>標簽</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;//簡寫屬性,可設置background-color,background-image,background-repeat,background-attachment,background-position背景屬性 }</pre> <pre>body { background-image: url(bgimage.gif);//背景圖像 background-attachment: fixed;//背景圖像是否固定/隨著頁面其他部分滾動 background-repeat:no-repeat;//水平或垂直方向重復方式:repeat/repeat-x/repeat-y/no-repeat background-position:center;//背景圖像起始位置,top left center bottom right中的兩個組合,如果只規定一個,另一個默認為center background-size:80px 60px;//背景圖像寬度和高度,不設置則默認為auto }</pre> <pre>body { background-color:yellow;//顏色名稱 } h1 { background-color:#00ff00;//十六進制 } p { background-color:rgb(255,0,255);//rgb代碼 } div { background-color:transparent;//默認值,透明 }</pre> <b>邊框屬性</b> <pre>p { border:5px solid red;//簡寫屬性,順序:border-width border-style border-color }</pre> <pre>border-radius:25px;//四個角的形狀,也可以設置某個角的形狀,栗子: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:;//可以設置多帶帶邊框的屬性</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;//文字大小和字體為必寫項</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 內邊距屬性(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 大,那么該方法在提取子串之前會先交換這兩個參數 //不接受負的參數 var str="How are you doing today?" str.substring(2,3);//"ow"</pre> <p><strong>slice()</strong></p> <pre>stringObject.slice(start,end) //從 start 開始(包括 start)到 end 結束(不包括 end)為止的所有字符 //如果start/end是負數,則該參數規定的是從字符串的尾部開始算起的位置。也就是說,-1 指字符串的最后一個字符,-2 指倒數第二個字符,以此類推。 var str="How are you doing today?" str.slice(-3,-1)//"ay" //(-1,-3)返回的時"" </pre> <p><strong>split()</strong></p> <pre>stringObject.split(separator,howmany) //返回一個字符串數組,從參數separator指定的地方分割 stringObject //如果 separator 是包含子表達式的正則表達式,那么返回的數組中包括與這些子表達式匹配的字串(但不包括與整個正則表達式匹配的文本)</pre> <p>注釋:String.split() 執行的操作與 Array.join 執行的操作是相反的</p> <p><strong>indexOf()</strong></p> <pre>stringObject.indexOf(searchvalue,fromindex) //檢索指定的字符串值searchvalue在字符串中首次出現的位置,fromindex指的是開始檢索的位置 //不存在的時候返回-1</pre> <p><strong>lastindexOf()</strong></p> <pre>stringObject.lastIndexOf(searchvalue,fromindex) //返回一個指定的字符串值最后出現的位置,在一個字符串中的指定位置從后向前搜索。</pre> <p><strong>charAt()</strong></p> <pre>stringObject.charAt(index) //返回指定位置的字符</pre> <p><strong>contact()</strong></p> <pre>stringObject.concat(stringX,stringX,...,stringX) //連接兩個或多個字符串</pre> <p><strong>match()</strong></p> <pre>stringObject.match(searchvalue) stringObject.match(regexp) //在字符串內檢索指定的值,或找到一個或多個正則表達式的匹配. //與indexOf()不同,match返回的是匹配到的值,而indexOf返回的是位置</pre> <p><strong>replace()</strong></p> <pre>stringObject.replace(regexp/substr,replacement) //在字符串中用一些字符替換另一些字符,或替換一個與正則表達式匹配的子串 //對大小寫不敏感</pre> <p><strong>search()</strong></p> <pre>stringObject.search(regexp) //返回stringObject 中第一個與 regexp 相匹配的子串的起始位置 //從字符串的開始進行檢索</pre> <p><strong>valueOf()</strong></p> <pre>stringObject.valueOf() //valueOf() 方法可返回 String 對象的原始值。 //原始值是由從 String 對象下來的所有對象繼承的。 //valueOf() 方法通常由 JavaScript 在后臺自動進行調用,而不是顯式地處于代碼中。</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>創建數組的方法</b> <p><strong>數組字面量法</strong></p> <pre>var array = [1,2,3];</pre> <p><strong>構造函數法</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后面連接兩個或多個數組,返回一個新數組 //不改變現有數組</pre> <p><strong>join()</strong></p> <pre>arrayObject.join(separator) //以separator作為分隔符,把數組中的元素放入字符串 //與String對象的split()方法相反</pre> <p><strong>pop()</strong></p> <pre>arrayObject.pop() //刪除數組的最后一個元素,并返回該元素</pre> <p><strong>shift()</strong></p> <pre>arrayObject.shift() //刪除數組的第一個元素,并返回該元素</pre> <p><strong>push()</strong></p> <pre>arrayObject.push(newelement1,newelement2,....,newelementX) //添加一個或更多元素到數組的末尾,并返回新的數組長度</pre> <p><strong>unshift()</strong></p> <pre>arrayObject.unshift(newelement1,newelement2,....,newelementX) //添加一個或更多元素到數組的開頭,并返回新的數組長度</pre> <p><strong>reverse()</strong></p> <pre>arrayObject.reverse() //反轉數組 //注意:改變的是原來的數組,不會創建新數組</pre> <p><strong>slice()</strong></p> <pre>arrayObject.slice(start,end) //返回已有數組從start到end(不包括)的元素 //返回一個子數組,不改變原數組</pre> <p><strong>splice()</strong></p> <pre>arrayObject.splice(index,howmany,item1,.....,itemX) //刪除從index開始的howmany(可以為0)個元素,并從刪除的位置開始添加新的元素到原數組 //返回數組,改變原數組</pre> <p><strong>sort()</strong></p> <pre>arrayObject.sort(sortby) //對數組元素排序,在原數組上進行 //默認按照字母順序進行排序</pre> <p>如果想按照其他標準進行排序,就需要提供比較函數,該函數要比較兩個值,然后返回一個用于說明這兩個值的相對順序的數字。比較函數應該具有兩個參數 a 和 b,其返回值如下:</p> <pre>- 若 a 小于 b,在排序后的數組中 a 應該出現在 b 之前,則返回一個小于 0 的值。 - 若 a 等于 b,則返回 0。 - 若 a 大于 b,則返回一個大于 0 的值。</pre> <pre>function sortNum(a,b) { return a - b;//升序 //return b - a;//降序 } array.sort(sortNum);//數值字符串數組按照數值的大小對數字排序</pre> <p><strong>toString()</strong></p> <pre>array.toString() //把數組轉換為字符串,并返回該字符串</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() //返回數組對象的原始值</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>對比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的區別——slice返回子數組,且不會改變原數組;splice從某個位置刪除數組內元素,并添加新元素,改變原數組。</p> </div> <div id="gq2qwqy" class="mt-64 tags-seach" > <div id="wokeioi" class="tags-info"> <a style="width:120px;" title="云服務器" href="http://m.specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務器</a> <a style="width:120px;" title="GPU云服務器" href="http://m.specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務器</a> <a style="width:120px;" title="屬性定義方法" href="http://m.specialneedsforspecialkids.com/yun/tag/shuxingdingyifangfa/">屬性定義方法</a> <a style="width:120px;" title="linux常用常用命令" href="http://m.specialneedsforspecialkids.com/yun/tag/linuxchangyongchangyongmingling/">linux常用常用命令</a> <a style="width:120px;" title="方法屬性 java" href="http://m.specialneedsforspecialkids.com/yun/tag/fangfashuxing java/">方法屬性 java</a> <a style="width:120px;" title="linux命令常用命令" href="http://m.specialneedsforspecialkids.com/yun/tag/linuxminglingchangyongmingling/">linux命令常用命令</a> </div> </div> <div id="y2aygkq" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。</p> <p>轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/53530.html</p> </div> <ul class="pre-next-page"> <li id="gmg0k2g" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/53529.html">上一篇:quicklink解析</a></li> <li id="e22qk2u" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/53531.html">下一篇:從“雅虎軍規”看性能優化</a></li> </ul> </div> <div id="w2wskqw" class="about_topicone-mid"> <h3 class="top-com-title mb-0"><span data-id="0">相關文章</span></h3> <ul class="com_white-left-mid atricle-list-box"> <li> <div id="2mu0kas" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.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">摘要:定義表格中的表注內容腳注樣式節標簽描述屬性定義文檔的樣式信息。原始值是由從對象下來的所有對象繼承的。方法通常由在后臺自動進行調用,而不是顯式地處于代碼中。 HTML常用標簽 其實在w3school上都有詳細的總結和描述,寫在這里是為了理清自己的思路,整理比較常用的標簽。原地址:http://www.w3school.com.cn/ta... //tag 基礎...</p> <div id="g0aiq2q" class="com_white-left-info"> <div id="4miagy2" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-760.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/07/small_000000760.jpg" alt=""><span id="csmqeua" class="layui-hide64">wupengyu</span></a> <time datetime="">2019-08-30 15:55</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="w04ymsy" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/100742.html"><b><em>前端</em><em>常用</em><em>屬性</em>/<em>方法</em>/<em>命令</em><em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:定義表格中的表注內容腳注樣式節標簽描述屬性定義文檔的樣式信息。原始值是由從對象下來的所有對象繼承的。方法通常由在后臺自動進行調用,而不是顯式地處于代碼中。 HTML常用標簽 其實在w3school上都有詳細的總結和描述,寫在這里是為了理清自己的思路,整理比較常用的標簽。原地址:http://www.w3school.com.cn/ta... //tag 基礎...</p> <div id="aewgqqw" class="com_white-left-info"> <div id="ukg022c" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-657.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/06/small_000000657.jpg" alt=""><span id="uo0wumu" class="layui-hide64">xcold</span></a> <time datetime="">2019-08-23 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> <li> <div id="kcm2agk" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/97721.html"><b><em>前端</em><em>常用</em>函數<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:參數對象數組,需要排序的目標要按排序的對象屬性名稱排序的方向,為從小到大是否使用模式,默認為,注意,使用該參數時前面的必須傳入。使用場景想要排列一個對象數組,條件是根據這些對象中的某個屬性。 cdd-lib 個人常用庫積累 說明 本庫是完全的es2015模塊語法,也使用了ts源碼。所以使用commonjs方式導致不可用。 路徑和引用說明 /index.js 根路徑的index.js文件...</p> <div id="eau2koi" class="com_white-left-info"> <div id="mmyawmg" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-863.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/08/small_000000863.jpg" alt=""><span id="0wqc2uk" class="layui-hide64">ACb0y</span></a> <time datetime="">2019-08-23 11:57</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="2w220gy" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/115635.html"><b><em>常用</em><em>前端</em>知識<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:閉包的理解使用閉包主要是為了設計私有的方法和變量。只在中存放不敏感數據,即使被盜也不會有重大損失。每個最多只能有條,每個長度不能超過,否則會被截掉。有些狀態不可能保存在客戶端。例如,為了防止重復提交表單,我們需要在服務器端保存一個計數器。 閉包的理解 使用閉包主要是為了設計私有的方法和變量。 優點是可以避免全局變量的污染, 缺點是閉包會常駐內存,會增大內存使用量,使用不當很容易造成內存...</p> <div id="yyewooi" class="com_white-left-info"> <div id="kq2qyek" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1678.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/16/small_000001678.jpg" alt=""><span id="2a0ywas" class="layui-hide64">B0B0</span></a> <time datetime="">2019-08-30 13:55</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="es2u2kq" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/107180.html"><b><em>常用</em><em>前端</em>知識<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:閉包的理解使用閉包主要是為了設計私有的方法和變量。只在中存放不敏感數據,即使被盜也不會有重大損失。每個最多只能有條,每個長度不能超過,否則會被截掉。有些狀態不可能保存在客戶端。例如,為了防止重復提交表單,我們需要在服務器端保存一個計數器。 閉包的理解 使用閉包主要是為了設計私有的方法和變量。 優點是可以避免全局變量的污染, 缺點是閉包會常駐內存,會增大內存使用量,使用不當很容易造成內存...</p> <div id="2sauaem" class="com_white-left-info"> <div id="2c2iewc" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1036.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/10/small_000001036.jpg" alt=""><span id="igq2ime" class="layui-hide64">haobowd</span></a> <time datetime="">2019-08-26 11:35</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="22ak2a2" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發表評論</span></h3> <div id="qia0qum" class="xcp-publish-main flex_box_zd"> <div id="ukqygyc" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="2yeygk2" class="site-box-content"> <div id="coweasy" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="2k0a0cg" class="pages"></ul></div> </div> </div> <div id="2qa2cem" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="0y2kime" class=""> <div id="umgm2ae" class="com_layuiright-box user-msgbox"> <a href="http://m.specialneedsforspecialkids.com/yun/u-136.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/01/small_000000136.jpg" alt=""></a> <h3><a href="http://m.specialneedsforspecialkids.com/yun/u-136.html" rel="nofollow">lastSeries</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="cqyecew" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(136)" id="attenttouser_136" class="grad follow-btn notfollow attention">我要關注</a> <a href="javascript:login()" title="發私信" >我要私信</a> </div> <div id="2q2goiy" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://m.specialneedsforspecialkids.com/yun/ut-136.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/130750.html">tensorflow1.x</a></h3> <p>閱讀 3764<span>·</span>2023-04-25 20:00</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/120322.html">主機域名是什么意思-主機域名是哪個?</a></h3> <p>閱讀 3117<span>·</span>2021-09-22 15:09</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/118462.html">Virtono:&euro;23.7/年KVM-2GB/25GB/2TB/洛杉磯&a</a></h3> <p>閱讀 512<span>·</span>2021-08-25 09:40</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/117722.html">騰訊云星星海SA2云服務器上線1.2折起,100%CPU性能,3.3GHz高頻,2核4G6M,173</a></h3> <p>閱讀 3421<span>·</span>2021-07-26 23:38</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/116636.html">前端學習整理資料(未完待續)</a></h3> <p>閱讀 2210<span>·</span>2019-08-30 15:53</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/115539.html">瀏覽器默認值匯總</a></h3> <p>閱讀 1100<span>·</span>2019-08-30 13:46</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/113941.html">Slog63_項目上線之ArthurSlog個人網站上線2</a></h3> <p>閱讀 2794<span>·</span>2019-08-29 16:44</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/113389.html">如何找到所有 HTML select 標簽的選中項</a></h3> <p>閱讀 2050<span>·</span>2019-08-29 15:32</p></li> </ul> </div> <!-- 文章詳情右側廣告--> <div id="egqysas" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="oqka0em" class="com_adbox"> <div id="siomiou" 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="云服務器"> </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云服務器"> </a> </div> </div> </div> </div> <!-- banner結束 --> <div id="gkemuyq" 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="u2gmwye" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="mq0kgmq" class="site-mobile-shade"></div> <!--付費閱讀 --> <div class="guc0uwq" id="payread"> <div id="aqyckag" class="layui-form-item">閱讀需要支付1元查看</div> <div id="sgci0y2" 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("復制代碼 ").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("復制成功") }); clipboard.on('error', function(e) { alert("復制失敗") }); } //$(".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:"付費閱讀", shadeClose: true, content: $('#payread') }); } // 舉報 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("評論內容不能為空"); 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("您已經贊過"); } } }); }); function attenquestion(_tid,_rs){ $.ajax({ //提交數據的類型 POST GET type:"POST", //提交的網址 url:"http://m.specialneedsforspecialkids.com/yun/favorite/topicadd.html", //提交的數據 data:{tid:_tid,rs:_rs}, //返回數據的格式 datatype: "json",//"xml", "html", "script", "json", "jsonp", "text". //在請求之前調用的函數 beforeSend:function(){}, //成功返回之后調用的函數 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) } } , //調用執行后調用的函數 complete: function(XMLHttpRequest, textStatus){ postadopt=true; }, //調用出錯執行的函數 error: function(){ //請求出錯處理 postadopt=false; } }); } </script> <footer> <div id="w202o2w" class="layui-container"> <div id="igmgcgk" class="flex_box_zd"> <div id="esgysko" 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 (優刻得科技股份有限公司)"></a></h6> <p>UCloud (優刻得科技股份有限公司)是中立、安全的云計算服務平臺,堅持中立,不涉足客戶業務領域。公司自主研發IaaS、PaaS、大數據流通平臺、AI服務平臺等一系列云計算產品,并深入了解互聯網、傳統企業在不同場景下的業務需求,提供公有云、混合云、私有云、專有云在內的綜合性行業解決方案。</p> </div> <div id="2ws02wc" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務</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" >行業解決方案</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/pro-notice/">產品動態</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>社區欄目</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/" >新聞動態</a></p> <p><a href="http://m.specialneedsforspecialkids.com/site/about/news/report/">媒體動態</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="優刻得"></span> <p>掃掃了解更多</p></div> </div> <div id="22iqyc2" class="copyright">Copyright ? 2012-2023 UCloud 優刻得科技股份有限公司<i>|</i><a rel="nofollow" >滬公網安備 31011002000058號</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號-3</a><i>|</i> <script type="text/javascript" src="https://gyfk12.kuaishang.cn/bs/ks.j?cI=197688&fI=125915" charset="utf-8"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?290c2650b305fc9fff0dbdcafe48b59d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-DZSMXQ3P9N"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-DZSMXQ3P9N'); </script> <script> (function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?99f50ea166557aed914eb4a66a7a70a4709cbb98a54ecb576877d99556fb4bfc3d72cd14f8a76432df3935ab77ec54f830517b3cb210f7fd334f50ccb772134a"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window) </script></div> </div> </footer> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://m.specialneedsforspecialkids.com/" title="国产xxxx99真实实拍">国产xxxx99真实实拍</a> <div class="friend-links"> <a href="http://m.cp97744.com/">国产一区电影</a> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="caoko" class="pl_css_ganrao" style="display: none;"><pre id="caoko"></pre><tr id="caoko"><wbr id="caoko"><cite id="caoko"></cite></wbr></tr><optgroup id="caoko"><abbr id="caoko"><sup id="caoko"></sup></abbr></optgroup><td id="caoko"></td><sup id="caoko"></sup><noframes id="caoko"></noframes><center id="caoko"></center><samp id="caoko"></samp><abbr id="caoko"><center id="caoko"><dd id="caoko"></dd></center></abbr><tr id="caoko"></tr><rt id="caoko"><tbody id="caoko"><em id="caoko"></em></tbody></rt><dd id="caoko"><dl id="caoko"><nav id="caoko"></nav></dl></dd><abbr id="caoko"></abbr><pre id="caoko"></pre><em id="caoko"><blockquote id="caoko"><tfoot id="caoko"></tfoot></blockquote></em><rt id="caoko"><tbody id="caoko"><em id="caoko"></em></tbody></rt><center id="caoko"></center><pre id="caoko"><wbr id="caoko"><cite id="caoko"></cite></wbr></pre><tfoot id="caoko"></tfoot><acronym id="caoko"></acronym><noscript id="caoko"></noscript><optgroup id="caoko"><abbr id="caoko"><center id="caoko"></center></abbr></optgroup><ul id="caoko"><sup id="caoko"><source id="caoko"></source></sup></ul><tbody id="caoko"></tbody><ul id="caoko"><center id="caoko"><center id="caoko"></center></center></ul><strike id="caoko"><menu id="caoko"><tr id="caoko"></tr></menu></strike><button id="caoko"></button><input id="caoko"></input><wbr id="caoko"><cite id="caoko"><abbr id="caoko"></abbr></cite></wbr><abbr id="caoko"></abbr><tr id="caoko"><s id="caoko"><bdo id="caoko"></bdo></s></tr><li id="caoko"></li><th id="caoko"><optgroup id="caoko"><ul id="caoko"></ul></optgroup></th><fieldset id="caoko"></fieldset><bdo id="caoko"></bdo><noframes id="caoko"></noframes><noscript id="caoko"></noscript><object id="caoko"></object><center id="caoko"></center><acronym id="caoko"></acronym><tbody id="caoko"></tbody><sup id="caoko"><center id="caoko"><th id="caoko"></th></center></sup><rt id="caoko"><code id="caoko"><noframes id="caoko"></noframes></code></rt><noscript id="caoko"></noscript><xmp id="caoko"><fieldset id="caoko"><table id="caoko"></table></fieldset></xmp><center id="caoko"></center><th id="caoko"><object id="caoko"><li id="caoko"></li></object></th><center id="caoko"><dl id="caoko"><nav id="caoko"></nav></dl></center><menu id="caoko"></menu><small id="caoko"></small><tr id="caoko"><acronym id="caoko"><td id="caoko"></td></acronym></tr><tfoot id="caoko"><input id="caoko"><tbody id="caoko"></tbody></input></tfoot><dfn id="caoko"><source id="caoko"><code id="caoko"></code></source></dfn><code id="caoko"><pre id="caoko"><blockquote id="caoko"></blockquote></pre></code><center id="caoko"><strong id="caoko"><nav id="caoko"></nav></strong></center><dd id="caoko"><th id="caoko"><nav id="caoko"></nav></th></dd><option id="caoko"><dd id="caoko"><tbody id="caoko"></tbody></dd></option><small id="caoko"><option id="caoko"><delect id="caoko"></delect></option></small><noframes id="caoko"></noframes><kbd id="caoko"><em id="caoko"><td id="caoko"></td></em></kbd><wbr id="caoko"><cite id="caoko"><abbr id="caoko"></abbr></cite></wbr><ul id="caoko"><sup id="caoko"><source id="caoko"></source></sup></ul><td id="caoko"></td><bdo id="caoko"></bdo><tr id="caoko"></tr><tbody id="caoko"><pre id="caoko"><xmp id="caoko"></xmp></pre></tbody><strong id="caoko"><noframes id="caoko"><abbr id="caoko"></abbr></noframes></strong><button id="caoko"><center id="caoko"><th id="caoko"></th></center></button><object id="caoko"></object><kbd id="caoko"><pre id="caoko"><wbr id="caoko"></wbr></pre></kbd><noscript id="caoko"></noscript><strike id="caoko"></strike><td id="caoko"></td><optgroup id="caoko"><abbr id="caoko"><dfn id="caoko"></dfn></abbr></optgroup><pre id="caoko"><object id="caoko"><bdo id="caoko"></bdo></object></pre><center id="caoko"><dd id="caoko"><th id="caoko"></th></dd></center><ul id="caoko"><dfn id="caoko"><source id="caoko"></source></dfn></ul><delect id="caoko"></delect><acronym id="caoko"></acronym><tbody id="caoko"></tbody><noscript id="caoko"></noscript><dfn id="caoko"><source id="caoko"><code id="caoko"></code></source></dfn><pre id="caoko"></pre><xmp id="caoko"><fieldset id="caoko"><input id="caoko"></input></fieldset></xmp><noframes id="caoko"></noframes><strong id="caoko"></strong><s id="caoko"></s><center id="caoko"></center><s id="caoko"><small id="caoko"><button id="caoko"></button></small></s><kbd id="caoko"><tr id="caoko"><s id="caoko"></s></tr></kbd><cite id="caoko"></cite><acronym id="caoko"></acronym><noscript id="caoko"></noscript><cite id="caoko"></cite><option id="caoko"><samp id="caoko"><tbody id="caoko"></tbody></samp></option><li id="caoko"></li><s id="caoko"></s><strong id="caoko"></strong><acronym id="caoko"><xmp id="caoko"><fieldset id="caoko"></fieldset></xmp></acronym><blockquote id="caoko"><strike id="caoko"><rt id="caoko"></rt></strike></blockquote><blockquote id="caoko"><strike id="caoko"><input id="caoko"></input></strike></blockquote><noframes id="caoko"></noframes><nav id="caoko"></nav><small id="caoko"><option id="caoko"><delect id="caoko"></delect></option></small><noframes id="caoko"></noframes><input id="caoko"></input><tfoot id="caoko"></tfoot><center id="caoko"></center><tr id="caoko"></tr><dd id="caoko"><th id="caoko"><nav id="caoko"></nav></th></dd><delect id="caoko"></delect><pre id="caoko"></pre><sup id="caoko"></sup><del id="caoko"></del><td id="caoko"></td><option id="caoko"></option><delect id="caoko"></delect><small id="caoko"></small><tbody id="caoko"><em id="caoko"><del id="caoko"></del></em></tbody><wbr id="caoko"><cite id="caoko"><menu id="caoko"></menu></cite></wbr><dfn id="caoko"><source id="caoko"><strong id="caoko"></strong></source></dfn><sup id="caoko"></sup><abbr id="caoko"></abbr><strike id="caoko"></strike><sup id="caoko"></sup><tr id="caoko"></tr><noscript id="caoko"></noscript><samp id="caoko"><th id="caoko"><s id="caoko"></s></th></samp><noscript id="caoko"></noscript><s id="caoko"><bdo id="caoko"><abbr id="caoko"></abbr></bdo></s><object id="caoko"></object><dfn id="caoko"><source id="caoko"><strong id="caoko"></strong></source></dfn><strong id="caoko"></strong><code id="caoko"><em id="caoko"><del id="caoko"></del></em></code><object id="caoko"></object><td id="caoko"></td><blockquote id="caoko"><strike id="caoko"><menu id="caoko"></menu></strike></blockquote><dfn id="caoko"></dfn><th id="caoko"></th><sup id="caoko"></sup><delect id="caoko"></delect><th id="caoko"></th><acronym id="caoko"></acronym><option id="caoko"><delect id="caoko"><tr id="caoko"></tr></delect></option><samp id="caoko"></samp><em id="caoko"><del id="caoko"><dfn id="caoko"></dfn></del></em><input id="caoko"></input><pre id="caoko"></pre><small id="caoko"><button id="caoko"><delect id="caoko"></delect></button></small><table id="caoko"><kbd id="caoko"><pre id="caoko"></pre></kbd></table></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>