JS去空格函数代码

发布时间:2020-01-17编辑:脚本学堂
分享一例js去空格的函数代码,有需要的朋友参考下。

用js代码去除空格,如下:
 

复制代码 代码示例:

<script language="javascript" type="text/javascript"> 
String.prototype.Trim = function() {
   return this.replace(/(^s*)|(s*$)/g, "");

function CheckData() { 
    var Uname = document.getElementById('<%=txtUname.ClientID %>').value; 
    var Upwd = document.getElementById('<%=txtUpwd.ClientID %>').value; 
 
    if (Uname.Trim() == "") { 
        alert('用户名不可以为空!'); 
        return false; 
    } 
    if (Upwd.Trim() == "") { 
        alert('密码不可以为空!'); 
        return false; 
    } 
    return true; 

</script>