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

为JS字符类型添加trim方法

时间:2014-07-01 20:25:50      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   cti   io   type   

JS字符串本身并不没有提供常用的trim方法,我们可以通过修改String原形来添加此方法,我们就可以直接调用此方法了:

String.prototype.trim = function(){return this.replace(/(^\s*)|(\s*$)/g, ‘‘)}
String.prototype.leftTrim = function(){return this.replace(/(^\s*)/g, ‘‘)}
String.prototype.rigthTrim = function(){return this.replace(/(\s*$)/g, ‘‘)}
var str = "  123 ";
alert("原始长度:" + str.length);//6
alert("trim后长度:" + str.trim().length);//3
alert("leftTrim长度:" + str.leftTrim().length);//4
alert("rigthTrim长度:" + str.rigthTrim().length);//5

为JS字符类型添加trim方法,布布扣,bubuko.com

为JS字符类型添加trim方法

标签:style   blog   color   cti   io   type   

原文地址:http://www.cnblogs.com/barros/p/3817006.html

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