JavaScript采用正则表达式实现startWith、endWith效果函数 复制代码 代码如下: String.prototype.startWith=function(str){ var reg=new RegExp("^"+str); return reg.test(this); } String.prototype.endWith=function(str){ var reg=new RegExp(str+"$"); return reg.test(this); } JavaScript实现startWith、endWith效果函数 复制代码 代码如下: <BR> String.prototype.endWith=function(s){<BR> if(s==null||s==""||this.length==0||s.length>this.length)<BR> return false;<BR> if(this.substring(this.length-s.length)==s)<BR> return true;<BR> else<BR> return false;<BR> return true;<BR> }<BR> String.prototype.startWith=function(s){<BR> if(s==null||s==""||this.length==0||s.length>this.length)<BR> return false;<BR> if(this.substr(0,s.length)==s)<BR> return true;<BR> else<BR> return false;<BR> return true;<BR> }<BR>//以下是使用示例var url = location.href;if (url.startWith('http://www.jb51.net')){ //如果当前url是以 http://www.jb51.net/ 开头} 另外一种即是用indexOf实现: 复制代码 代码如下: var index = str.indexOf('abc'); if(index==0){ //以'abc'开头 }