<input type="text" id="girdi" />
<script>
//jquery import edilecek
$(document).ready(function() {
$("#girdi").on("change",function() {
var v = $(this).val();
v = v.replace(" ","").replace("-","");
$this.val(v);
});
});
</script>
çay borcun olsun.