js怎么去空格

来源:互联网 发布:双向优化视觉训练仪 编辑:程序博客网 时间:2024/04/19 08:26
写成类的方法格式如下:(str.trim();)<script language="javascript"> String.prototype.trim=function(){    return this.replace(/(^\s*)|(\s*$)/g, ""); } String.prototype.ltrim=function(){    return this.replace(/(^\s*)/g,""); } String.prototype.rtrim=function(){    return this.replace(/(\s*$)/g,""); }</script>写成函数可以这样:(trim(str))<script type="text/javascript"> function trim(str){ //删除左右两端的空格     return str.replace(/(^\s*)|(\s*$)/g, ""); } function ltrim(str){ //删除左边的空格     return str.replace(/(^\s*)/g,""); } function rtrim(str){ //删除右边的空格     return str.replace(/(\s*$)/g,""); }</script>

0 0
原创粉丝点击