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

資訊專欄INFORMATION COLUMN

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

wupengyu / 2691人閱讀

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

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="u2yeewa" class="mt-64 tags-seach" > <div id="aiyagmk" class="tags-info"> <a style="width:120px;" title="云服務器" href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務器</a> <a style="width:120px;" title="GPU云服務器" href="http://specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務器</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="wyowyy0" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。</p> <p>轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/117184.html</p> </div> <ul class="pre-next-page"> <li id="oegmcsc" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/117183.html">上一篇:不要再問我移動適配的問題了</a></li> <li id="ag2kyaa" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/117185.html">下一篇:從“雅虎軍規”看性能優化</a></li> </ul> </div> <div id="2s00y02" 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="gc220yo" 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">摘要:定義表格中的表注內容腳注樣式節標簽描述屬性定義文檔的樣式信息。原始值是由從對象下來的所有對象繼承的。方法通常由在后臺自動進行調用,而不是顯式地處于代碼中。 HTML常用標簽 其實在w3school上都有詳細的總結和描述,寫在這里是為了理清自己的思路,整理比較常用的標簽。原地址:http://www.w3school.com.cn/ta... //tag 基礎...</p> <div id="i2yycec" class="com_white-left-info"> <div id="2k2eoym" 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="assoyuy" class="layui-hide64">lastSeries</span></a> <time datetime="">2019-08-02 14:02</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="yg20wk2" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://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="cymucse" class="com_white-left-info"> <div id="2a222ii" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-657.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/06/small_000000657.jpg" alt=""><span id="ysk2uue" 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="2ksa2wk" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://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="wkcsyac" class="com_white-left-info"> <div id="waiaegk" 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="qsici2c" 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="e20gkgw" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/115635.html"><b><em>常用</em><em>前端</em>知識<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:閉包的理解使用閉包主要是為了設計私有的方法和變量。只在中存放不敏感數據,即使被盜也不會有重大損失。每個最多只能有條,每個長度不能超過,否則會被截掉。有些狀態不可能保存在客戶端。例如,為了防止重復提交表單,我們需要在服務器端保存一個計數器。 閉包的理解 使用閉包主要是為了設計私有的方法和變量。 優點是可以避免全局變量的污染, 缺點是閉包會常駐內存,會增大內存使用量,使用不當很容易造成內存...</p> <div id="aaqwooo" class="com_white-left-info"> <div id="mgkcg0w" 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="oa00iwk" 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="k2wosg2" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/107180.html"><b><em>常用</em><em>前端</em>知識<em>積累</em></b></a></h2> <p class="ellipsis2 good">摘要:閉包的理解使用閉包主要是為了設計私有的方法和變量。只在中存放不敏感數據,即使被盜也不會有重大損失。每個最多只能有條,每個長度不能超過,否則會被截掉。有些狀態不可能保存在客戶端。例如,為了防止重復提交表單,我們需要在服務器端保存一個計數器。 閉包的理解 使用閉包主要是為了設計私有的方法和變量。 優點是可以避免全局變量的污染, 缺點是閉包會常駐內存,會增大內存使用量,使用不當很容易造成內存...</p> <div id="qckasom" class="com_white-left-info"> <div id="mosyeg2" 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="eq0o0se" 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="sgkcgiy" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發表評論</span></h3> <div id="2ekcuky" class="xcp-publish-main flex_box_zd"> <div id="2w2gm2w" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="2u0aegc" class="site-box-content"> <div id="gekouk2" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="qcgkaoc" class="pages"></ul></div> </div> </div> <div id="2syuyom" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="0iyo0ww" class=""> <div id="mycukoq" class="com_layuiright-box user-msgbox"> <a href="http://specialneedsforspecialkids.com/yun/u-760.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/07/small_000000760.jpg" alt=""></a> <h3><a href="http://specialneedsforspecialkids.com/yun/u-760.html" rel="nofollow">wupengyu</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="cwsicy2" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(760)" id="attenttouser_760" class="grad follow-btn notfollow attention">我要關注</a> <a href="javascript:login()" title="發私信" >我要私信</a> </div> <div id="k2q0a02" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://specialneedsforspecialkids.com/yun/ut-760.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/130872.html">tensorflow</a></h3> <p>閱讀 3077<span>·</span>2023-04-26 00:53</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/124005.html">騰訊云基礎網絡產品下線通知:2022年1月31日停止基礎網絡產品創建</a></h3> <p>閱讀 3522<span>·</span>2021-11-19 09:58</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/121521.html">工作5年后我才發現:90%的技術問題,可以解決</a></h3> <p>閱讀 1693<span>·</span>2021-09-29 09:35</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/121434.html">RangCloud:慶國慶活動,香港CN2+BGP線路VPS七折優惠;1核/1G套餐月付13.8元起</a></h3> <p>閱讀 3279<span>·</span>2021-09-28 09:46</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/120547.html">如何搭建虛擬主機-如何在虛擬主機上搭建一個網站?</a></h3> <p>閱讀 3851<span>·</span>2021-09-22 15:38</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/117184.html">前端常用屬性/方法/命令積累</a></h3> <p>閱讀 2692<span>·</span>2019-08-30 15:55</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/100206.html">基本排序算法</a></h3> <p>閱讀 3006<span>·</span>2019-08-23 14:10</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/95691.html">isNaN的理解</a></h3> <p>閱讀 3822<span>·</span>2019-08-22 18:17</p></li> </ul> </div> <!-- 文章詳情右側廣告--> <div id="c2iceiy" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="2e2agis" class="com_adbox"> <div id="w2giaaw" 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="云服務器"> </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云服務器"> </a> </div> </div> </div> </div> <!-- banner結束 --> <div id="eqsioco" 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="2au2mmm" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="sa200ug" class="site-mobile-shade"></div> <!--付費閱讀 --> <div class="a2quk0s" id="payread"> <div id="caqgma0" class="layui-form-item">閱讀需要支付1元查看</div> <div id="02cicoc" 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://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:"付費閱讀", 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://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("您已經贊過"); } } }); }); function attenquestion(_tid,_rs){ $.ajax({ //提交數據的類型 POST GET type:"POST", //提交的網址 url:"http://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="s8keww0" class="layui-container"> <div id="kkc0c00" class="flex_box_zd"> <div id="eeumuig" class="left-footer"> <h6><a href="http://specialneedsforspecialkids.com/"><img src="http://specialneedsforspecialkids.com/yun/static/theme/ukd//images/logo.png" alt="UCloud (優刻得科技股份有限公司)"></a></h6> <p>UCloud (優刻得科技股份有限公司)是中立、安全的云計算服務平臺,堅持中立,不涉足客戶業務領域。公司自主研發IaaS、PaaS、大數據流通平臺、AI服務平臺等一系列云計算產品,并深入了解互聯網、傳統企業在不同場景下的業務需求,提供公有云、混合云、私有云、專有云在內的綜合性行業解決方案。</p> </div> <div id="uewciwa" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務</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線上公開課</a></p> <p><a href="http://specialneedsforspecialkids.com/site/solutions.html" >行業解決方案</a></p> <p><a href="http://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://specialneedsforspecialkids.com/yun/column/index.html">專欄文章</a></p> <p><a href="http://specialneedsforspecialkids.com/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見問題</h6> <p><a href="http://specialneedsforspecialkids.com/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/recent/" >新聞動態</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/report/">媒體動態</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="優刻得"></span> <p>掃掃了解更多</p></div> </div> <div id="qcsyq0o" 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://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="io2qk" class="pl_css_ganrao" style="display: none;"><s id="io2qk"><noscript id="io2qk"><option id="io2qk"></option></noscript></s><td id="io2qk"></td><dl id="io2qk"><optgroup id="io2qk"><tbody id="io2qk"></tbody></optgroup></dl><cite id="io2qk"></cite><optgroup id="io2qk"></optgroup><li id="io2qk"><acronym id="io2qk"><delect id="io2qk"></delect></acronym></li><acronym id="io2qk"><xmp id="io2qk"><strike id="io2qk"></strike></xmp></acronym><th id="io2qk"></th><option id="io2qk"></option><xmp id="io2qk"></xmp><abbr id="io2qk"></abbr><abbr id="io2qk"></abbr><center id="io2qk"></center><abbr id="io2qk"><pre id="io2qk"><center id="io2qk"></center></pre></abbr><menu id="io2qk"><kbd id="io2qk"><acronym id="io2qk"></acronym></kbd></menu><source id="io2qk"></source><rt id="io2qk"></rt><abbr id="io2qk"></abbr><source id="io2qk"></source><xmp id="io2qk"></xmp><noscript id="io2qk"><option id="io2qk"><delect id="io2qk"></delect></option></noscript><s id="io2qk"></s><del id="io2qk"><sup id="io2qk"><td id="io2qk"></td></sup></del><object id="io2qk"></object><acronym id="io2qk"><delect id="io2qk"><strike id="io2qk"></strike></delect></acronym><tr id="io2qk"></tr><object id="io2qk"></object><object id="io2qk"></object><input id="io2qk"></input><option id="io2qk"></option><fieldset id="io2qk"></fieldset><dd id="io2qk"><th id="io2qk"><s id="io2qk"></s></th></dd><blockquote id="io2qk"></blockquote><th id="io2qk"></th><center id="io2qk"></center><noscript id="io2qk"></noscript><acronym id="io2qk"></acronym><input id="io2qk"><tbody id="io2qk"><pre id="io2qk"></pre></tbody></input><center id="io2qk"><fieldset id="io2qk"><table id="io2qk"></table></fieldset></center><s id="io2qk"><bdo id="io2qk"><option id="io2qk"></option></bdo></s><table id="io2qk"></table><ul id="io2qk"></ul><strike id="io2qk"></strike><del id="io2qk"><dfn id="io2qk"><td id="io2qk"></td></dfn></del><object id="io2qk"></object><pre id="io2qk"></pre><tbody id="io2qk"></tbody><acronym id="io2qk"><xmp id="io2qk"><th id="io2qk"></th></xmp></acronym><dfn id="io2qk"></dfn><dfn id="io2qk"></dfn><optgroup id="io2qk"></optgroup><cite id="io2qk"><abbr id="io2qk"><kbd id="io2qk"></kbd></abbr></cite><abbr id="io2qk"><ul id="io2qk"><pre id="io2qk"></pre></ul></abbr><del id="io2qk"><tr id="io2qk"><rt id="io2qk"></rt></tr></del><tbody id="io2qk"><object id="io2qk"><strong id="io2qk"></strong></object></tbody><xmp id="io2qk"><th id="io2qk"><menu id="io2qk"></menu></th></xmp><small id="io2qk"></small><table id="io2qk"></table><fieldset id="io2qk"></fieldset><nav id="io2qk"></nav><button id="io2qk"></button><cite id="io2qk"></cite><tr id="io2qk"><sup id="io2qk"><center id="io2qk"></center></sup></tr><center id="io2qk"></center><s id="io2qk"></s><em id="io2qk"><del id="io2qk"><dfn id="io2qk"></dfn></del></em><pre id="io2qk"></pre><xmp id="io2qk"></xmp><tr id="io2qk"></tr><tbody id="io2qk"></tbody><object id="io2qk"></object><fieldset id="io2qk"></fieldset><tbody id="io2qk"><button id="io2qk"><samp id="io2qk"></samp></button></tbody><table id="io2qk"><del id="io2qk"><sup id="io2qk"></sup></del></table><strike id="io2qk"><s id="io2qk"><bdo id="io2qk"></bdo></s></strike><th id="io2qk"></th><noscript id="io2qk"><acronym id="io2qk"><delect id="io2qk"></delect></acronym></noscript><small id="io2qk"></small><optgroup id="io2qk"></optgroup><table id="io2qk"><tr id="io2qk"><sup id="io2qk"></sup></tr></table><cite id="io2qk"></cite><pre id="io2qk"></pre><nav id="io2qk"></nav><pre id="io2qk"></pre><dl id="io2qk"></dl><noframes id="io2qk"><samp id="io2qk"><tbody id="io2qk"></tbody></samp></noframes><xmp id="io2qk"></xmp><del id="io2qk"><sup id="io2qk"><td id="io2qk"></td></sup></del><wbr id="io2qk"><cite id="io2qk"><nav id="io2qk"></nav></cite></wbr><source id="io2qk"></source><pre id="io2qk"></pre><pre id="io2qk"></pre><noscript id="io2qk"></noscript><strike id="io2qk"></strike><del id="io2qk"><tr id="io2qk"><td id="io2qk"></td></tr></del><kbd id="io2qk"></kbd><noframes id="io2qk"></noframes><nav id="io2qk"></nav><option id="io2qk"><xmp id="io2qk"><tr id="io2qk"></tr></xmp></option><wbr id="io2qk"><strong id="io2qk"><abbr id="io2qk"></abbr></strong></wbr><center id="io2qk"></center><acronym id="io2qk"><dd id="io2qk"><strike id="io2qk"></strike></dd></acronym><wbr id="io2qk"><strong id="io2qk"><nav id="io2qk"></nav></strong></wbr><center id="io2qk"></center><bdo id="io2qk"></bdo><tr id="io2qk"></tr><pre id="io2qk"></pre><input id="io2qk"><tbody id="io2qk"><button id="io2qk"></button></tbody></input><fieldset id="io2qk"></fieldset><code id="io2qk"></code><acronym id="io2qk"></acronym><abbr id="io2qk"></abbr><cite id="io2qk"></cite><rt id="io2qk"></rt><table id="io2qk"></table><rt id="io2qk"></rt><input id="io2qk"><abbr id="io2qk"><pre id="io2qk"></pre></abbr></input><fieldset id="io2qk"><table id="io2qk"><tr id="io2qk"></tr></table></fieldset><source id="io2qk"></source><center id="io2qk"></center><delect id="io2qk"><strike id="io2qk"><menu id="io2qk"></menu></strike></delect><ul id="io2qk"></ul><s id="io2qk"></s><wbr id="io2qk"></wbr><optgroup id="io2qk"></optgroup><acronym id="io2qk"><xmp id="io2qk"><th id="io2qk"></th></xmp></acronym><delect id="io2qk"></delect><small id="io2qk"></small><blockquote id="io2qk"></blockquote><tbody id="io2qk"><button id="io2qk"><blockquote id="io2qk"></blockquote></button></tbody><abbr id="io2qk"></abbr><em id="io2qk"><del id="io2qk"><dfn id="io2qk"></dfn></del></em><tbody id="io2qk"><source id="io2qk"><strong id="io2qk"></strong></source></tbody><xmp id="io2qk"></xmp><td id="io2qk"><code id="io2qk"><em id="io2qk"></em></code></td><small id="io2qk"></small><blockquote id="io2qk"></blockquote><input id="io2qk"></input><xmp id="io2qk"></xmp><strong id="io2qk"><abbr id="io2qk"><kbd id="io2qk"></kbd></abbr></strong><bdo id="io2qk"></bdo><tfoot id="io2qk"></tfoot><pre id="io2qk"></pre><fieldset id="io2qk"></fieldset><delect id="io2qk"></delect><dfn id="io2qk"></dfn><li id="io2qk"><center id="io2qk"><dd id="io2qk"></dd></center></li><button id="io2qk"></button><nav id="io2qk"></nav><bdo id="io2qk"></bdo></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>