js去掉所有空格
<script>
String.prototype.trim = function () {
return this.replace(/(^\s*)|(\s*$)/g, "");
}
function $G(id) {
return document.getElementById(id);
}
function spaceTrim()
{
var strValue=$G("id").value.trim();
}
</script>