Jquery is an example of of pure numeric captcha that prohibits characters other than Numbers


When the pure digital verification code is used, the following is sorted out:

$('#mobile-vcode').unbind();
$("#mobile-vcode").bind("keyup change",function () {
    $(this).val($(this).val().replace(/D/g,''));
    if($(this).val().length==4){
       
    }
});