纯数字验证码的时候用到的,整理如下:
复制代码 代码如下:
$('#mobile-vcode').unbind();
$("#mobile-vcode").bind("keyup change",function () {
$(this).val($(this).val().replace(/D/g,''));
if($(this).val().length==4){
}
});

纯数字验证码的时候用到的,整理如下:
复制代码 代码如下:
$('#mobile-vcode').unbind();
$("#mobile-vcode").bind("keyup change",function () {
$(this).val($(this).val().replace(/D/g,''));
if($(this).val().length==4){
}
});