无为清净楼资源网 Design By www.qnjia.com

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效果函数
复制代码 代码如下:
<script type="text/javascript">
 String.prototype.endWith=function(s){
  if(s==null||s==""||this.length==0||s.length>this.length)
     return false;
  if(this.substring(this.length-s.length)==s)
     return true;
  else
     return false;
  return true;
 }
 String.prototype.startWith=function(s){
  if(s==null||s==""||this.length==0||s.length>this.length)
   return false;
  if(this.substr(0,s.length)==s)
     return true;
  else
     return false;
  return true;
 }
</script>

//以下是使用示例
var url = location.href;
if (url.startWith('https://www.jb51.net'))
{
    //如果当前url是以 https://www.jb51.net/ 开头
}

另外一种即是用indexOf实现:
复制代码 代码如下:
var index = str.indexOf('abc');

if(index==0){

//以'abc'开头

}

标签:
startWith,endWith

无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com