1)
codice:
if(!/^[a-zA-Z\ ]*$/.test(valore)){ 
alert("!!"); 
}
2)
codice:
if(!/^[a-zA-Z\ .]*$/.test(valore)){ 
alert("!!"); 
}

3)
codice:
if(!/^[a-zA-Z0-9\ .]*$/.test(valore)){ 
alert("!!"); 
}
dovrebbero funzionare