自己编写的类似JS的trim方法
时间:2021-07-21 08:23:41|栏目:JavaScript代码|点击: 次
由于JS的trim方法在很多浏览器中不支持 所以在这里我们可以使用自己编写的trim方法来处理一些剪掉字符串两端的空字符串的需要 处理方法有很多种 这里我只选择一种 是经过自己测试的
String.prototype.trim = function () {
return this .replace(/^\s\s*/, '' ).replace(/\s\s*$/, '');
}
复制代码 代码如下:
String.prototype.trim = function () {
return this .replace(/^\s\s*/, '' ).replace(/\s\s*$/, '');
}
上一篇:ExtJs中gridpanel分组后组名排序实例代码
栏 目:JavaScript代码
本文标题:自己编写的类似JS的trim方法
本文地址:http://www.codeinn.net/misctech/160021.html