去空格

<input type="text" name="b" id="b"><input type="button" onclick="a()" value="去空格"/>

<script type="text/javascript">

function a(){

var str = document.getElementById('b').value;

re = / /g;

alert(str.replace(re,""));

}

</script>

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