JS去空格

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">  
  2. <HTML>  
  3. <HEAD>  
  4. <TITLE>去空格</TITLE>  
  5. <SCRIPT LANGUAGE="JavaScript">  
  6. <!--  
  7.     //去两边空格  
  8.     String.prototype.trim = function(){  
  9.         return this.replace(/(^/s*)|(/s*$)/g, "");  
  10.     };  
  11.     //去所有空格  
  12.     String.prototype.trimAll = function(){  
  13.         return this.replace(/(^/s*)|(/s*)|(/s*$)/g, "");  
  14.     };  
  15.     function PeripheralTrim(){  
  16.         var tmp = document.getElementById("inputid").value.trim();  
  17.         document.getElementById("inputid1").value = tmp;  
  18.     }  
  19.     function AllTrim(){  
  20.         var tmp = document.getElementById("inputid").value.trimAll();  
  21.         document.getElementById("inputid1").value = tmp;  
  22.     }  
  23. //-->  
  24. </SCRIPT>  
  25. </HEAD>  
  26.   
  27. <BODY>  
  28. <input type="button" onclick="PeripheralTrim()" value="去两边空格"/><br>  
  29. <input type="button" onclick="AllTrim()" value="去所有空格"/><br>  
  30. <input type="text" id="inputid"/><br>  
  31. <input type="text" id="inputid1"/>  
  32. </BODY>  
  33. </HTML>

 

你可能感兴趣的:(JS去空格)