js去除空格(trim方法)

/**

* 去空格

*/

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,"");

};

  

你可能感兴趣的:(trim)