天天看点

js判断字符串是否包含http [email protected]

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开头的!")
}
           

继续阅读