js判断字符串是否包含http

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

}
posted @ 2020-08-04 12:11  八戒vs  阅读(5025)  评论(0)    收藏  举报