16 Eylül 2014 Salı

JQUERY KODLAR 3

Sadece Rakam Girişine İzin Vermek İçin;
 
 $(".input1").keyup(function (){ if (
              this.value.match(/[^0-9]/g)){ this.value = this.value.replace(/[^0-9]/g,'');
 } 
});
 
Sadece Harf Girişine İzin Vermek İçin;
$(".input1").keyup(function (){ if (this.value.match(/[^a-zA-Z]/g)){ 
           this.value = this.value.replace(/[^a-zA-Z]/g,'');
 }
 });






----------------------------------------------------------------------------------------------------------------
Share: