码迷,mamicode.com
首页 > 其他好文 > 详细

IE兼容性 -- startWith方法

时间:2020-07-01 14:13:47      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:this   test   ring   UNC   false   prototype   fun   兼容性   正则表达   

 1 String.prototype.startWith=function(str){
 2 if(str==null||str==""||this.length==0||str.length>this.length)
 3   return false;
 4 if(this.substr(0,str.length)==str)
 5   return true;
 6 else
 7   return false;
 8 return true;
 9 }
10 //或者使用正则表达式,方法如下
11 String.prototype.startWith = function(str) {
12 var reg = new RegExp("^" + str);
13 return reg.test(this);

 

IE兼容性 -- startWith方法

标签:this   test   ring   UNC   false   prototype   fun   兼容性   正则表达   

原文地址:https://www.cnblogs.com/blogwolf/p/13218776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!