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

以后调用:
var str=document.form1.UserName.value.trim();
if(str.length==0)
{
   ...处理代码
}

你可能感兴趣的:(JavaScript,prototype)