首页 > PHP资讯 > HTML5培训技术 > jsstartWith和endWith函数扩展

jsstartWith和endWith函数扩展

HTML5培训技术
String.prototype.endWith=function(str){
if(str==null||str==""||this.length==0||str.length>this.length)
  return false;
if(this.substring(this.length-str.length)==str)
  return true;
else
  return false;
return true;
}
 
String.prototype.startWith=function(str){
if(str==null||str==""||this.length==0||str.length>this.length)
  return false;
if(this.substr(0,str.length)==str)
  return true;
else
  return false;
return true;
}

HTML5培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持27不支持0