ES6新增方法:startsWith()方法和endsWith()方法来判断字符串以什么开头或者什么结尾
startsWith()方法
该startsWith()方法确定字符串是否以指定字符串的字符开头,返回true或false视情况而定。
判断字符串以什么开头一般的话是用于来判断是否以http://开头或者以file:///开头
参数
接受两个参数
第一个参数,要在此字符串开头搜索的字符,
第二个参数是指定从字符串开始的位置,默认从零开始。
注意:
此方法区分大小写;
let str1 = "file:///C:/Users/iTAze/Desktop/1.html";
let str2 = "https://mp.csdn.net/postedit";
console.log(str1.startsWith("https://"))// false;
console.log(str1.startsWith("file:///"))// true;
console.log(str2.startsWith("https://"))// true;
console.log(str2.startsWith("file:///"))// false;
返回值
如果在字符串的开头找到给定的字符,返回true,否则返回false。
endsWith()方法
endsWith()方法和startsWith()方法的语法都是一样的,不过endsWith()方法是从字符串的末尾开始查找。
比如你要判断这个字符串是不是以 .png .jpg 等这种
注意:
请记住这个方法区分大小写!!!
这个方法在IE中完全不兼容,在Edge中是兼容的,如果你想用这个方法请寻找兼容写法。