substr(start,length)
    该方法可在字符串中抽取从start下标开始的指定数目的字符(可以使用负数)。

    1. var sentence="Everything is possible !";
    2. sentence.substr(3);//结果为 "rything is possible !",截取的是从下标为3的字符开始的所有的后面的字符串
    3. sentence.substr(3,4);//结果为"ryth",截取的是从下标为3的字符开始的长度为4的字符串