1,正则
var str=new RegExp("http");
str.test("httpadfsd");//test方法返回值为(true或者false)
2 indexOf();
var newStr=str.indexOf("http");
if(newStr==0){
console.log("字符串是以http开头的!")
}
if(newStr==-1){
console.log("字符串不是以http开头的!")
}
2022-09-04 08:37:05
1,正则
var str=new RegExp("http");
str.test("httpadfsd");//test方法返回值为(true或者false)
2 indexOf();
var newStr=str.indexOf("http");
if(newStr==0){
console.log("字符串是以http开头的!")
}
if(newStr==-1){
console.log("字符串不是以http开头的!")
}