1、使用indexOf("");
var newStr=str.indexOf("hello");
if(newStr==0){
console.log("字符串是以hello开头的!")
}
if(newStr==-1){
console.log("字符串不是以hello开头的!")
}
2、substring拿到字符串某个位置的内容。
var str=“hello world”;
alert(str.indexOf(“llo”));===>(结果:2)
如果不包含返回值是-1