js去除空格

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<input type="text" id="strs" value="     需要过   滤空格   ">
<input type="button" id="rstrsBtn" value="过滤两边的空格">
<input type="button" id="rstrsBtn2" value="去除所有空格">
<script>
    window.onload=function(){
        var text=document.getElementById("strs"),
             tarbtn=document.getElementById("rstrsBtn"),
             tarbtn2=document.getElementById("rstrsBtn2");
             tarbtn.onclick=function(){
                 text.value=text.value.replace(/^(\s|\u00A0)+|(\s|\u00A0)+$/g,"");//去除左右两边的空格
             }
            tarbtn2.onclick=function(){
                text.value=text.value.replace(/(\s|\u00A0)+|(\s|\u00A0)/g,"");//去除所有空格
            }
    }
</script>
</body>
</html>

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