zoukankan      html  css  js  c++  java
  • JS祛除前后空格——搜集

    <SCRIPT LANGUAGE="JavaScript">  
     <!--   
     // Trim() , Ltrim() , RTrim()  
     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>  
     <input type="text" value="   前后都是空格    " id="space">  
     <input type="button" value="去前后空格" onclick="javascript:document.getElementById('space').value=document.getElementById('space').value.Trim();document.getElementById('space').select();">

      
     <input type="button" value="去前空格" onclick="javascript:document.getElementById('space').value=document.getElementById('space').value.LTrim();document.getElementById('space').select();">  


     <input type="button" value="去后空格" onclick="javascript:document.getElementById('space').value=document.getElementById('space').value.RTrim();document.getElementById('space').select();">  


     <input type="button" value="还原" onclick="javascript:document.getElementById('space').value='     前后都是空格    ';">  
     <a href="http://www.baidu.com" target="_blank">访问yaosansi.com</a>

  • 相关阅读:
    ASCII到Unicode到UTF-8
    .NET项目引用黄色小三角以及找不到依赖的解决方法
    MongodbHelper
    SqlHelper分享
    C#_02.16_基础七_.NET表达式&运算符
    C#_02.15_基础六_.NET类
    C#_02.14_基础五_.NET类
    C#_02.13_基础四_.NET方法
    C#_02.13_基础三_.NET类基础
    C#_02.12_基础二_.NET类型存储和变量
  • 原文地址:https://www.cnblogs.com/zhangxp1129/p/2644143.html
Copyright © 2011-2022 走看看