清除两端空格

来源:互联网 发布:单片机51和52两大类 编辑:程序博客网 时间:2024/04/29 09:36
    function Trim()
    {
       document.getElementById("TextBox1").value=document.getElementById("TextBox1").value.replace(/(^/s*)|(/s*$)/g, "");
    } 
原创粉丝点击