Merhaba
//kullanici girisinde telefon numarasi alanina harf ve karekter girisini engelliyoruz
$("#telefon").keyup(function (){
if (this.value.match(/[^0-9]/g)){
this.value = this.value.replace(/[^0-9]/g,'');
}
});
$('#telefon').keypress(function (e) {
if (this.value.length == 0 && e.which == 48) return false;
});bunu kullanabilirsin