码迷,mamicode.com
首页 > Web开发 > 详细

js字符串两边截取空白的trim的原型方法的实现

时间:2017-10-15 14:43:11      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:截取   on()   replace   prototype   trim   例子   string   type   ons   

String.prototype.trim = function(){

  return this.replace(/(^\s*)|(\s*$)/g,‘‘);

}

例子:

var test = "   abc   ";

String.prototype.trim = function(){

  return this.replace(/(^\s*)|(\s*$)/g,‘‘);

}

test = test.trim();

console.log(test);

js字符串两边截取空白的trim的原型方法的实现

标签:截取   on()   replace   prototype   trim   例子   string   type   ons   

原文地址:http://www.cnblogs.com/wongh/p/7670155.html

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