1.去掉左边空格.replace(/^\s*/g,"");
2去掉右边空格.replace(/\s*$/g,"");
3去掉前后空格.replace(/(^\s*)|(\s*$)/g,"")
4去掉所有的空格.replace(/\s+/g,"")
空格测试:<input type="text" id="test" name="text" onchange="blank();" ><br>
<script>
$(function(){
var test =$('#test').val();
alert(test);
})
function blank(){var test =$('#test').val();
<%--去掉左边的空格 --%>
alert("a"+test);
test = test.replace(/^\s*/g,"");
alert("去掉左边的空格"+test);
<%--去掉右边的空格 --%>
alert(test+"a");
test = test.replace(/\s*$/g,"");
alert(test+"去掉右边的空格");
<%--去掉字符串前后的空格--%>
test = test.replace(/(^\s*)|(\s*$)/g, "");
alert("去掉字符串前后的空格"+test+"a");
<%--去掉字符串中的所有空格--%>
test = test.replace(/\s+/g,"");
alert("a"+test+"a");
}
</script>