Usa un espressione regolare. Così:

codice:
<script>
str = "voglio andare al mare";
str = str.replace(/\s/g, "_");
alert(str);
</script>