1.slice.substring.snustr均属于String的对象方法,用于截取或提取字符串片段,三者均布破坏原先的字符串,而是以新的字符串返回被提取的部分. <script> var str="0123456"; var str1=str.slice(2,5); var str2=str.substring(2,5); var str3=str.substr(2,5); console.log(str); console.log(str1); console.log…
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <title>TODO suppl…
今天遇到这个问题,发现ぜんぜんわすねまます3个方法,直接上代码吧,[网络版本较多就不注明参考过哪些了 -0- ] var test = 'hello world'; //均一位参数测试 console.log(test.slice()); //llo world console.log(test); //hello world console.log(test.substr()); //llo world console.log(test); //hello world console.log(…
首先,他们都接收两个参数,slice和substring接收的是起始位置和结束位置(不包括结束位置),而substr接收的则是起始位置和所要返回的字符串长度.直接看下面例子: var test = 'hello world';alert(test.slice(4,7)); //o walert(test.substring(4,7)); //o walert(test.substr(4,7)); //o world 这里有个需要注意的地方就是:substring是以两个参数中较小一个作为起始位置…