标签: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
标签:style blog color cti io type
原文地址:http://www.cnblogs.com/barros/p/3817006.html