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

資訊專欄INFORMATION COLUMN

Java 正則表達式詳解

Achilles / 1522人閱讀

摘要:正則表達式可以用于搜索編輯和操作文本。模式分組后會在正則表達式中創建反向引用。使正則忽略大小寫。注意方法不支持正則表達式。第三步,通過匹配對象,根據正則表達式操作字符串。正則表達式匹配數字范圍時,首先要確定最大值與最小值,最后寫中間值。

版權聲明:本文由吳仙杰創作整理,轉載請注明出處:https://segmentfault.com/a/1190000009162306
1. 正則表達式 1.1 什么是正則表達式

正則表達式
: 定義一個搜索模式的字符串。

正則表達式可以用于搜索、編輯和操作文本。

正則對文本的分析或修改過程為:首先正則表達式應用的是文本字符串(text/string),它會以定義的模式從左到右匹配文本,每個源字符只匹配一次。

1.2 示例
正則表達式 匹配
this is text 精確匹配字符串 "this is text"
thiss+iss+text 匹配單詞 "this" 后跟一個或多個空格字符,后跟詞 "is" 后跟一個或多個空格字符,后跟詞 "text"
^d+(.d+)? ^ 定義模式必須匹配字符串的開始,d+ 匹配一個或多個數字,? 表明小括號內的語句是可選的,. 匹配 ".",小括號表示分組。例如匹配:"5"、"1.5" 和 "2.21"
2. 正則表達式的編寫規則 2.1 常見匹配符號
正則表達式 描述
. 匹配所有單個字符,除了換行符(Linux 中換行是 ,Windows 中換行是
^regex 正則必須匹配字符串開頭
regex$ 正則必須匹配字符串結尾
[abc] 復選集定義,匹配字母 a 或 b 或 c
[abc][vz] 復選集定義,匹配字母 a 或 b 或 c,后面跟著 v 或 z
[^abc] 當插入符 ^ 在中括號中以第一個字符開始顯示,則表示否定模式。此模式匹配所有字符,除了 a 或 b 或 c
[a-d1-7] 范圍匹配,匹配字母 a 到 d 和數字從 1 到 7 之間,但不匹配 d1
XZ 匹配 X 后直接跟著 Z
X|Z 匹配 X 或 Z
2.2 元字符

元字符是一個預定義的字符。

正則表達式 描述
d 匹配一個數字,是 [0-9] 的簡寫
D 匹配一個非數字,是 [^0-9] 的簡寫
s 匹配一個空格,是 [ x0b f] 的簡寫
S 匹配一個非空格
w 匹配一個單詞字符(大小寫字母、數字、下劃線),是 [a-zA-Z_0-9] 的簡寫
W 匹配一個非單詞字符(除了大小寫字母、數字、下劃線之外的字符),等同于 [^w]
2.3 限定符

限定符定義了一個元素可以發生的頻率。

正則表達式 描述 舉例
* 匹配 >=0 個,是 {0,} 的簡寫 X* 表示匹配零個或多個字母 X,.* 表示匹配任何字符串
+ 匹配 >=1 個,是 {1,} 的簡寫 X+ 表示匹配一個或多個字母 X
? 匹配 1 個或 0 個,是 {0,1} 的簡寫 X? 表示匹配 0 個或 1 個字母 X
{X} 只匹配 X 個字符 d{3} 表示匹配 3 個數字,.{10} 表示匹配任何長度是 10 的字符串
{X,Y} 匹配 >=X 且 <=Y 個 d{1,4} 表示匹配至少 1 個最多 4 個數字
*? 如果 ? 是限定符 *+?{} 后面的第一個字符,那么表示非貪婪模式(盡可能少的匹配字符),而不是默認的貪婪模式
2.4 分組和反向引用

小括號 () 可以達到對正則表達式進行分組的效果。

模式分組后會在正則表達式中創建反向引用。反向引用會保存匹配模式分組的字符串片斷,這使得我們可以獲取并使用這個字符串片斷。

在以正則表達式替換字符串的語法中,是通過 $ 來引用分組的反向引用,$0 是匹配完整模式的字符串(注意在 JavaScript 中是用 $& 表示);$1 是第一個分組的反向引用;$2 是第二個分組的反向引用,以此類推。

示例:

package com.wuxianjiezh.demo.regex;

public class RegexTest {

    public static void main(String[] args) {
        // 去除單詞與 , 和 . 之間的空格
        String Str = "Hello , World .";
        String pattern = "(w)(s+)([.,])";
        // $0 匹配 `(w)(s+)([.,])` 結果為 `o空格,` 和 `d空格.`
        // $1 匹配 `(w)` 結果為 `o` 和 `d`
        // $2 匹配 `(s+)` 結果為 `空格` 和 `空格`
        // $3 匹配 `([.,])` 結果為 `,` 和 `.`
        System.out.println(Str.replaceAll(pattern, "$1$3")); // Hello, World.
    }
}

上面的例子中,我們使用了 [.] 來匹配普通字符 . 而不需要使用 [.]。因為正則對于 [] 中的 .,會自動處理為 [.],即普通字符 . 進行匹配。

2.4.1 僅分組但無反向引用

當我們在小括號 () 內的模式開頭加入 ?:,那么表示這個模式僅分組,但不創建反向引用。

示例:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "img.jpg";
        // 分組且創建反向引用
        Pattern pattern = Pattern.compile("(jpg|png)");
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println(matcher.group());
            System.out.println(matcher.group(1));
        }
    }
}

運行結果:

jpg
jpg

若源碼改為:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "img.jpg";
        // 分組但不創建反向引用
        Pattern pattern = Pattern.compile("(?:jpg|png)");
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println(matcher.group());
            System.out.println(matcher.group(1));
        }
    }
}

運行結果:

jpg
Exception in thread "main" java.lang.IndexOutOfBoundsException: No group 1
    at java.util.regex.Matcher.group(Matcher.java:538)
    at com.wuxianjiezh.regex.RegexTest.main(RegexTest.java:15)
2.4.2 分組的反向引用副本

Java 中可以在小括號中使用 ? 將小括號中匹配的內容保存為一個名字為 name 的副本。

示例:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "@wxj 你好啊";
        Pattern pattern = Pattern.compile("@(?w+s)"); // 保存一個副本
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println(matcher.group());
            System.out.println(matcher.group(1));
            System.out.println(matcher.group("first"));
        }
    }
}

運行結果:

@wxj 
wxj 
wxj 
2.5 否定先行斷言(Negative lookahead)

我們可以創建否定先行斷言模式的匹配,即某個字符串后面不包含另一個字符串的匹配模式。

否定先行斷言模式通過 (?!pattern) 定義。比如,我們匹配后面不是跟著 "b" 的 "a":

a(?!b)
2.6 指定正則表達式的模式

可以在正則的開頭指定模式修飾符。

(?i) 使正則忽略大小寫。

(?s) 表示單行模式("single line mode")使正則的 . 匹配所有字符,包括換行符。

(?m) 表示多行模式("multi-line mode"),使正則的 ^$ 匹配字符串中每行的開始和結束。

2.7 Java 中的反斜杠

反斜杠 在 Java 中表示轉義字符,這意味著 在 Java 擁有預定義的含義。

這里例舉兩個特別重要的用法:

在匹配 .{[(?$^* 這些特殊字符時,需要在前面加上 ,比如匹配 . 時,Java 中要寫為 .,但對于正則表達式來說就是 .

在匹配 時,Java 中要寫為 ,但對于正則表達式來說就是

注意:Java 中的正則表達式字符串有兩層含義,首先 Java 字符串轉義出符合正則表達式語法的字符串,然后再由轉義后的正則表達式進行模式匹配。

2.8 易錯點示例

[jpg|png] 代表匹配 jpgpng 中的任意一個字符。

(jpg|png) 代表匹配 jpgpng

3. 在字符串中使用正則表達式 3.1 內置的字符串正則處理方法

在 Java 中有四個內置的運行正則表達式的方法,分別是 matches()split())replaceFirst()replaceAll()。注意 replace() 方法不支持正則表達式。

方法 描述
s.matches("regex") 當僅且當正則匹配整個字符串時返回 true
s.split("regex") 按匹配的正則表達式切片字符串
s.replaceFirst("regex", "replacement") 替換首次匹配的字符串片段
s.replaceAll("regex", "replacement") 替換所有匹配的字符
3.2 示例

示例代碼:

package com.wuxianjiezh.regex;

public class RegexTest {

    public static void main(String[] args) {
        System.out.println("wxj".matches("wxj"));
        System.out.println("----------");

        String[] array = "w x j".split("s");
        for (String item : array) {
            System.out.println(item);
        }
        System.out.println("----------");

        System.out.println("w x j".replaceFirst("s", "-"));
        System.out.println("----------");

        System.out.println("w x j".replaceAll("s", "-"));
    }
}

運行結果:

true
----------
w
x
j
----------
w-x j
----------
w-x-j
4. 模式和匹配

Java 中使用正則表達式需要用到兩個類,分別為 java.util.regex.Patternjava.util.regex.Matcher

第一步,通過正則表達式創建模式對象 Pattern

第二步,通過模式對象 Pattern,根據指定字符串創建匹配對象 Matcher

第三步,通過匹配對象 Matcher,根據正則表達式操作字符串。

來個例子,加深理解:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String text = "Hello Regex!";

        Pattern pattern = Pattern.compile("w+");
        // Java 中忽略大小寫,有兩種寫法:
        // Pattern pattern = Pattern.compile("w+", Pattern.CASE_INSENSITIVE);
        // Pattern pattern = Pattern.compile("(?i)w+"); // 推薦寫法
        Matcher matcher = pattern.matcher(text);
        // 遍例所有匹配的序列
        while (matcher.find()) {
            System.out.print("Start index: " + matcher.start());
            System.out.print(" End index: " + matcher.end() + " ");
            System.out.println(matcher.group());
        }
        // 創建第兩個模式,將空格替換為 tab
        Pattern replace = Pattern.compile("s+");
        Matcher matcher2 = replace.matcher(text);
        System.out.println(matcher2.replaceAll("	"));
    }
}

運行結果:

Start index: 0 End index: 5 Hello
Start index: 6 End index: 11 Regex
Hello    Regex!
5. 若干個常用例子 5.1 中文的匹配

[u4e00-u9fa5]+ 代表匹配中文字。

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "閑人到人間";
        Pattern pattern = Pattern.compile("[u4e00-u9fa5]+");
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println(matcher.group());
        }
    }
}

運行結果:

閑人到人間
5.2 數字范圍的匹配

比如,匹配 1990 到 2017。

注意:這里有個新手易范的錯誤,就是正則 [1990-2017],實際這個正則只匹配 01279 中的任一個字符。

正則表達式匹配數字范圍時,首先要確定最大值與最小值,最后寫中間值。

正確的匹配方式:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "1990
2010
2017";
        // 這里應用了 (?m) 的多行匹配模式,只為方便我們測試輸出
        // "^1990$|^199[1-9]$|^20[0-1][0-6]$|^2017$" 為判斷 1990-2017 正確的正則表達式
        Pattern pattern = Pattern.compile("(?m)^1990$|^199[1-9]$|^20[0-1][0-6]$|^2017$");
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println(matcher.group());
        }
    }
}

運行結果:

1990
2010
2017
5.3 img 標簽的匹配

比如,獲取圖片文件內容,這里我們考慮了一些不規范的 img 標簽寫法:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "" +
                "";
        // 這里我們考慮了一些不規范的 img 標簽寫法,比如:空格、引號
        Pattern pattern = Pattern.compile("");
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println(matcher.group("src"));
        }
    }
}

運行結果:

aaa.jpg
bbb.png
ccc.png
5.4 貪婪與非貪婪模式的匹配

比如,獲取 div 標簽中的文本內容:

package com.wuxianjiezh.regex;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTest {

    public static void main(String[] args) {
        String str = "
文章標題
發布時間
"; // 貪婪模式 Pattern pattern = Pattern.compile("
(?.+)</div>"); Matcher matcher = pattern.matcher(str); while (matcher.find()) { System.out.println(matcher.group("title")); } System.out.println("--------------"); // 非貪婪模式 pattern = Pattern.compile("<div>(?<title>.+?)</div>"); matcher = pattern.matcher(str); while (matcher.find()) { System.out.println(matcher.group("title")); } } }</pre> <p>運行結果:</p> <pre>文章標題</div><div>發布時間 -------------- 文章標題 發布時間</pre> <b>6. 推薦兩個在線正則工具</b> <p>JavaScript、Python 等的在線表達式工具:https://regex101.com/ </p> <p>Java 在線表達式工具:http://www.regexplanet.com/advanced/java/index.html </p> <b>7. 參考</b> <p>Java Regex - Tutorial</p> </div> <div id="hhzdtfr" class="mt-64 tags-seach" > <div id="7z7tjff" class="tags-info"> <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/site/active/kuaijiesale.html?ytag=seo">云服務器</a> <a style="width:120px;" title="正則表達式java" href="http://m.specialneedsforspecialkids.com/yun/tag/zhengzebiaodashijava/">正則表達式java</a> <a style="width:120px;" title="java正則表達式教程" href="http://m.specialneedsforspecialkids.com/yun/tag/javazhengzebiaodashijiaocheng/">java正則表達式教程</a> <a style="width:120px;" title="java js正則表達式" href="http://m.specialneedsforspecialkids.com/yun/tag/java jszhengzebiaodashi/">java js正則表達式</a> <a style="width:120px;" title="java正則表達式t" href="http://m.specialneedsforspecialkids.com/yun/tag/javazhengzebiaodashit/">java正則表達式t</a> </div> </div> <div id="xd75lvt" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。</p> <p>轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/69899.html</p> </div> <ul class="pre-next-page"> <li id="55dfj7x" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/69898.html">上一篇:(八)java多線程之Semaphore</a></li> <li id="dbxnrd7" class="ellipsis"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/69900.html">下一篇:java根據模板動態生成PDF</a></li> </ul> </div> <div id="tv75jxl" 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="flbtjjv" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/87811.html"><b><em>Java</em>script字符串常用方法<em>詳解</em></b></a></h2> <p class="ellipsis2 good">摘要:屬性里的字符串類似于數組,都是一個一個字符拼湊在一起組成的,因此可以用屬性取得字符串的長度字符串常用的一些方法返回字符串的第個字符,如果不在之間,則返回一個空字符串。如果匹配成功,則返回正則表達式在字符串中首次匹配項的索引否則,返回。 字符串 字符串就是一個或多個排列在一起的字符,放在單引號或雙引號之中。 abc abc length屬性js里的字符串類似于數組,都是一個一個字...</p> <div id="thj7h7r" class="com_white-left-info"> <div id="ll7zbbp" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-952.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/09/small_000000952.jpg" alt=""><span id="5fxntrn" class="layui-hide64">Wildcard</span></a> <time datetime="">2019-08-21 14:08</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="t75f5lx" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/68337.html"><b>后端ing</b></a></h2> <p class="ellipsis2 good">摘要:當活動線程核心線程非核心線程達到這個數值后,后續任務將會根據來進行拒絕策略處理。線程池工作原則當線程池中線程數量小于則創建線程,并處理請求。當線程池中的數量等于最大線程數時默默丟棄不能執行的新加任務,不報任何異常。 spring-cache使用記錄 spring-cache的使用記錄,坑點記錄以及采用的解決方案 深入分析 java 線程池的實現原理 在這篇文章中,作者有條不紊的將 ja...</p> <div id="tvjzrrp" class="com_white-left-info"> <div id="lzbdfr7" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1389.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/13/small_000001389.jpg" alt=""><span id="pb75j7b" class="layui-hide64">roadtogeek</span></a> <time datetime="">2019-08-15 13:49</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="f7ht5lj" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/70539.html"><b><em>java</em><em>正則</em>表式的使用</b></a></h2> <p class="ellipsis2 good">摘要:直接使用正則表達式對輸入的字符串進行匹配,匹配成功則返回使用正則表示式,進行字符串分割進行匹配操作,如果匹配成功,這三個方法都會返回其中,是在源字符串中找出和正則表達式匹配的字符串。 概念 正則表達式 在閱讀本文前,你應該已經了解了正則表達式的基本概念以及如何書寫正則表達式。如果對正則表達式不是太了解,或者想更深入地了解正則表示式,請點擊這里。 捕獲組 捕獲組能夠讓我們方便地從正則表達...</p> <div id="zz7v7hh" class="com_white-left-info"> <div id="d7bbhtt" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-149.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/01/small_000000149.jpg" alt=""><span id="x7jl5nj" class="layui-hide64">zoomdong</span></a> <time datetime="">2019-08-16 10:49</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="bbf7rtj" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/88131.html"><b><em>正則</em><em>表<em>達式</em></em>前端使用手冊</b></a></h2> <p class="ellipsis2 good">摘要:非貪婪模式盡可能少的匹配所搜索的字符串,而默認的貪婪模式則盡可能多的匹配所搜索的字符串。 導讀 你有沒有在搜索文本的時候絞盡腦汁, 試了一個又一個表達式, 還是不行. 你有沒有在表單驗證的時候, 只是做做樣子(只要不為空就好), 然后燒香拜佛, 虔誠祈禱, 千萬不要出錯. 你有沒有在使用sed 和 grep 命令的時候, 感覺莫名其妙, 明明應該支持的元字符, 卻就是匹配不到. 甚至,...</p> <div id="jv7dh5l" class="com_white-left-info"> <div id="xvlrv7z" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1241.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/12/small_000001241.jpg" alt=""><span id="x7ndfrp" class="layui-hide64">zhoutao</span></a> <time datetime="">2019-08-21 15:12</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="fl7hznd" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.specialneedsforspecialkids.com/yun/119616.html"><b>軟件接口測試工具Jmeter使用核心<em>詳解</em>【建議收藏】</b></a></h2> <p class="ellipsis2 good">用Jmeter做接口測試只需要掌握幾個核心功能就可以了。 并不一定要把它所有的功能都掌握,先掌握核心功能入行,然后再根據工作需要和職業規劃來學習更多的內容。這篇文章在前面接口測試框架(測試計劃--->線程組--->請求--->查看結果樹)的前提下,來介紹必須要掌握的幾個核心功能,力求用最短的時間取得最大的成果。 在前面的文章中我提到,用Jmeter做接口測試的核心是單接口測試的參數化和關聯接口測試...</p> <div id="b7h7td5" class="com_white-left-info"> <div id="fb75hdz" class="com_white-left-infol"> <a href="http://m.specialneedsforspecialkids.com/yun/u-149.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/01/small_000000149.jpg" alt=""><span id="jv7hllx" class="layui-hide64">zoomdong</span></a> <time datetime="">2021-09-09 09:32</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="hf7z55v" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發表評論</span></h3> <div id="57d97bv" class="xcp-publish-main flex_box_zd"> <div id="rbh5zz5" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="77vbfdh" class="site-box-content"> <div id="75flnvv" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="ddv5xlx" class="pages"></ul></div> </div> </div> <div id="7b5lzvh" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="dbr7jxt" class=""> <div id="7zprlvx" class="com_layuiright-box user-msgbox"> <a href="http://m.specialneedsforspecialkids.com/yun/u-1617.html"><img src="http://m.specialneedsforspecialkids.com/yun/data/avatar/000/00/16/small_000001617.jpg" alt=""></a> <h3><a href="http://m.specialneedsforspecialkids.com/yun/u-1617.html" rel="nofollow">Achilles</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="f755p55" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(1617)" id="attenttouser_1617" class="grad follow-btn notfollow attention">我要關注</a> <a href="javascript:login()" title="發私信" >我要私信</a> </div> <div id="jz77tdr" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://m.specialneedsforspecialkids.com/yun/ut-1617.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/124560.html">ITLDC:黑五促銷活動,新加坡/美國/荷蘭/波蘭/烏克蘭vps等11個機房首年五折僅€16.5,不</a></h3> <p>閱讀 1191<span>·</span>2021-11-23 10:10</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/121606.html">Redis壓力測試——redis-benchmark</a></h3> <p>閱讀 1523<span>·</span>2021-09-30 09:47</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/121315.html">Gcore:邁阿密E5-2623v4 CPU獨立服務器75折,支持支付寶</a></h3> <p>閱讀 907<span>·</span>2021-09-27 14:02</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/116380.html">移動端點擊事件全攻略,這里的坑你知多少?</a></h3> <p>閱讀 2983<span>·</span>2019-08-30 15:45</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/115837.html">js 手工繪制一個圖表(自定義chart),</a></h3> <p>閱讀 3028<span>·</span>2019-08-30 14:11</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/112906.html">h5項目各種小問題解決方案</a></h3> <p>閱讀 3623<span>·</span>2019-08-29 14:05</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/112753.html">Web Storage 與cookies</a></h3> <p>閱讀 1829<span>·</span>2019-08-29 13:51</p></li> <li><h3 class="ellipsis"><a href="http://m.specialneedsforspecialkids.com/yun/111725.html">14天入門JavaScript-day two</a></h3> <p>閱讀 2213<span>·</span>2019-08-29 11:33</p></li> </ul> </div> <!-- 文章詳情右側廣告--> <div id="bbrvxjx" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="vxjn7bn" class="com_adbox"> <div id="nzpfvjh" 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="lvntxzl" 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="hfvzrdb" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="r5l575d" class="site-mobile-shade"></div> <!--付費閱讀 --> <div class="vff5r7j" id="payread"> <div id="bjjzbb5" class="layui-form-item">閱讀需要支付1元查看</div> <div id="pz7xzx7" 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="7rxnrrf" class="layui-container"> <div id="hr7rvvj" class="flex_box_zd"> <div id="7rjx5zl" 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="75dh7rn" 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="dzbfvlz" 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="lxhdh" class="pl_css_ganrao" style="display: none;"><optgroup id="lxhdh"><video id="lxhdh"><sub id="lxhdh"><div id="lxhdh"></div></sub></video></optgroup><style id="lxhdh"></style><legend id="lxhdh"><dfn id="lxhdh"></dfn></legend><strong id="lxhdh"></strong><ruby id="lxhdh"><thead id="lxhdh"><thead id="lxhdh"><dfn id="lxhdh"></dfn></thead></thead></ruby><em id="lxhdh"></em><mark id="lxhdh"></mark><form id="lxhdh"><legend id="lxhdh"><dfn id="lxhdh"><strong id="lxhdh"></strong></dfn></legend></form><output id="lxhdh"></output><nobr id="lxhdh"><b id="lxhdh"><meter id="lxhdh"><pre id="lxhdh"></pre></meter></b></nobr><menuitem id="lxhdh"><dl id="lxhdh"><legend id="lxhdh"><dfn id="lxhdh"></dfn></legend></dl></menuitem><thead id="lxhdh"><legend id="lxhdh"></legend></thead><b id="lxhdh"><progress id="lxhdh"><sup id="lxhdh"><style id="lxhdh"></style></sup></progress></b><th id="lxhdh"><b id="lxhdh"></b></th><track id="lxhdh"><tt id="lxhdh"></tt></track><u id="lxhdh"></u><legend id="lxhdh"><listing id="lxhdh"><dfn id="lxhdh"><mark id="lxhdh"></mark></dfn></listing></legend><strong id="lxhdh"><form id="lxhdh"></form></strong><label id="lxhdh"><ruby id="lxhdh"><thead id="lxhdh"><progress id="lxhdh"></progress></thead></ruby></label><big id="lxhdh"><ol id="lxhdh"><pre id="lxhdh"><listing id="lxhdh"></listing></pre></ol></big><track id="lxhdh"></track><span id="lxhdh"></span><span id="lxhdh"><legend id="lxhdh"></legend></span><var id="lxhdh"></var><style id="lxhdh"><nobr id="lxhdh"></nobr></style><style id="lxhdh"></style><ins id="lxhdh"><address id="lxhdh"></address></ins><font id="lxhdh"><legend id="lxhdh"></legend></font><big id="lxhdh"><span id="lxhdh"><legend id="lxhdh"><dfn id="lxhdh"></dfn></legend></span></big><form id="lxhdh"><output id="lxhdh"></output></form><big id="lxhdh"><ol id="lxhdh"><optgroup id="lxhdh"><video id="lxhdh"></video></optgroup></ol></big><strike id="lxhdh"><nobr id="lxhdh"><small id="lxhdh"><ins id="lxhdh"></ins></small></nobr></strike><font id="lxhdh"></font><style id="lxhdh"><nobr id="lxhdh"></nobr></style><track id="lxhdh"></track><font id="lxhdh"><progress id="lxhdh"></progress></font><track id="lxhdh"><tt id="lxhdh"></tt></track><div id="lxhdh"></div><sub id="lxhdh"><strike id="lxhdh"></strike></sub><small id="lxhdh"></small><small id="lxhdh"><ins id="lxhdh"><address id="lxhdh"><div id="lxhdh"></div></address></ins></small><strike id="lxhdh"><strong id="lxhdh"><optgroup id="lxhdh"><video id="lxhdh"></video></optgroup></strong></strike><i id="lxhdh"></i><thead id="lxhdh"><legend id="lxhdh"></legend></thead><output id="lxhdh"><address id="lxhdh"><strike id="lxhdh"><strong id="lxhdh"></strong></strike></address></output><font id="lxhdh"><progress id="lxhdh"></progress></font><mark id="lxhdh"><thead id="lxhdh"></thead></mark><nobr id="lxhdh"><b id="lxhdh"></b></nobr><form id="lxhdh"><ins id="lxhdh"></ins></form><font id="lxhdh"><legend id="lxhdh"><sup id="lxhdh"><style id="lxhdh"></style></sup></legend></font><sup id="lxhdh"><label id="lxhdh"></label></sup><label id="lxhdh"><strong id="lxhdh"></strong></label><ins id="lxhdh"></ins><dfn id="lxhdh"><menuitem id="lxhdh"><dl id="lxhdh"><i id="lxhdh"></i></dl></menuitem></dfn><font id="lxhdh"><progress id="lxhdh"></progress></font><pre id="lxhdh"></pre><label id="lxhdh"></label><pre id="lxhdh"><track id="lxhdh"></track></pre><span id="lxhdh"></span><pre id="lxhdh"></pre><video id="lxhdh"><tt id="lxhdh"></tt></video><th id="lxhdh"><b id="lxhdh"></b></th><pre id="lxhdh"><p id="lxhdh"></p></pre><pre id="lxhdh"><strike id="lxhdh"></strike></pre><strong id="lxhdh"><rp id="lxhdh"></rp></strong><thead id="lxhdh"><sup id="lxhdh"></sup></thead><progress id="lxhdh"></progress><span id="lxhdh"><i id="lxhdh"><dfn id="lxhdh"><u id="lxhdh"></u></dfn></i></span><div id="lxhdh"><ol id="lxhdh"></ol></div><label id="lxhdh"></label><pre id="lxhdh"><video id="lxhdh"><em id="lxhdh"><menuitem id="lxhdh"></menuitem></em></video></pre><label id="lxhdh"><rp id="lxhdh"></rp></label><span id="lxhdh"><i id="lxhdh"></i></span><legend id="lxhdh"></legend><strong id="lxhdh"><form id="lxhdh"><video id="lxhdh"><em id="lxhdh"></em></video></form></strong><pre id="lxhdh"><track id="lxhdh"></track></pre><optgroup id="lxhdh"></optgroup><th id="lxhdh"></th><rp id="lxhdh"></rp><acronym id="lxhdh"></acronym><tt id="lxhdh"><menuitem id="lxhdh"></menuitem></tt><big id="lxhdh"></big><var id="lxhdh"><small id="lxhdh"><ins id="lxhdh"><address id="lxhdh"></address></ins></small></var><strike id="lxhdh"><strong id="lxhdh"><optgroup id="lxhdh"><output id="lxhdh"></output></optgroup></strong></strike><em id="lxhdh"></em><font id="lxhdh"><progress id="lxhdh"></progress></font><em id="lxhdh"><big id="lxhdh"></big></em><form id="lxhdh"><thead id="lxhdh"><label id="lxhdh"><label id="lxhdh"></label></label></thead></form><style id="lxhdh"><nobr id="lxhdh"></nobr></style><meter id="lxhdh"><pre id="lxhdh"><p id="lxhdh"><var id="lxhdh"></var></p></pre></meter><legend id="lxhdh"><dfn id="lxhdh"></dfn></legend><div id="lxhdh"><ol id="lxhdh"></ol></div><small id="lxhdh"></small><progress id="lxhdh"><sup id="lxhdh"><label id="lxhdh"><nobr id="lxhdh"></nobr></label></sup></progress><em id="lxhdh"><mark id="lxhdh"></mark></em><acronym id="lxhdh"><label id="lxhdh"><th id="lxhdh"><small id="lxhdh"></small></th></label></acronym><ins id="lxhdh"><pre id="lxhdh"><strike id="lxhdh"><strong id="lxhdh"></strong></strike></pre></ins><menuitem id="lxhdh"><span id="lxhdh"><legend id="lxhdh"><dfn id="lxhdh"></dfn></legend></span></menuitem><dfn id="lxhdh"><dfn id="lxhdh"><ruby id="lxhdh"><form id="lxhdh"></form></ruby></dfn></dfn><dfn id="lxhdh"></dfn><u id="lxhdh"></u><dfn id="lxhdh"><dfn id="lxhdh"><mark id="lxhdh"><form id="lxhdh"></form></mark></dfn></dfn><progress id="lxhdh"><acronym id="lxhdh"><style id="lxhdh"><nobr id="lxhdh"></nobr></style></acronym></progress><dl id="lxhdh"><i id="lxhdh"><track id="lxhdh"><dfn id="lxhdh"></dfn></track></i></dl><menuitem id="lxhdh"></menuitem><meter id="lxhdh"><sup id="lxhdh"><style id="lxhdh"><nobr id="lxhdh"></nobr></style></sup></meter><rp id="lxhdh"><form id="lxhdh"><legend id="lxhdh"><sup id="lxhdh"></sup></legend></form></rp><var id="lxhdh"><small id="lxhdh"><ins id="lxhdh"><address id="lxhdh"></address></ins></small></var><mark id="lxhdh"><span id="lxhdh"></span></mark><b id="lxhdh"><progress id="lxhdh"><acronym id="lxhdh"><style id="lxhdh"></style></acronym></progress></b><ins id="lxhdh"><pre id="lxhdh"></pre></ins><dfn id="lxhdh"></dfn><legend id="lxhdh"><sup id="lxhdh"></sup></legend><div id="lxhdh"></div><video id="lxhdh"></video><dl id="lxhdh"><video id="lxhdh"></video></dl><em id="lxhdh"></em><strong id="lxhdh"><optgroup id="lxhdh"><video id="lxhdh"><em id="lxhdh"></em></video></optgroup></strong><var id="lxhdh"></var><acronym id="lxhdh"><style id="lxhdh"></style></acronym><address id="lxhdh"></address><sub id="lxhdh"><div id="lxhdh"><ol id="lxhdh"><i id="lxhdh"></i></ol></div></sub><ins id="lxhdh"></ins><mark id="lxhdh"><form id="lxhdh"><thead id="lxhdh"><label id="lxhdh"></label></thead></form></mark><address id="lxhdh"><p id="lxhdh"></p></address><address id="lxhdh"><strike id="lxhdh"><strong id="lxhdh"><pre id="lxhdh"></pre></strong></strike></address><ruby id="lxhdh"><thead id="lxhdh"><legend id="lxhdh"><acronym id="lxhdh"></acronym></legend></thead></ruby><style id="lxhdh"><nobr id="lxhdh"></nobr></style><span id="lxhdh"></span><rp id="lxhdh"></rp><label id="lxhdh"><th id="lxhdh"></th></label><font id="lxhdh"></font><sub id="lxhdh"><div id="lxhdh"><ol id="lxhdh"><i id="lxhdh"></i></ol></div></sub><address id="lxhdh"><p id="lxhdh"></p></address><font id="lxhdh"><progress id="lxhdh"></progress></font><em id="lxhdh"></em><strong id="lxhdh"><optgroup id="lxhdh"></optgroup></strong><font id="lxhdh"><legend id="lxhdh"></legend></font><font id="lxhdh"><progress id="lxhdh"><acronym id="lxhdh"><p id="lxhdh"></p></acronym></progress></font><legend id="lxhdh"><dfn id="lxhdh"></dfn></legend><label id="lxhdh"></label><progress id="lxhdh"><pre id="lxhdh"><p id="lxhdh"><nobr id="lxhdh"></nobr></p></pre></progress><thead id="lxhdh"></thead><dfn id="lxhdh"></dfn><font id="lxhdh"><progress id="lxhdh"></progress></font><address id="lxhdh"><strike id="lxhdh"><strong id="lxhdh"><pre id="lxhdh"></pre></strong></strike></address><form id="lxhdh"></form><strong id="lxhdh"><pre id="lxhdh"></pre></strong><label id="lxhdh"><u id="lxhdh"><ruby id="lxhdh"><font id="lxhdh"></font></ruby></u></label><form id="lxhdh"><ins id="lxhdh"></ins></form></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>