純數字驗證碼的時候用到的,整理如下:
. 代碼如下:$('#mobile-vcode').unbind();$("#mobile-vcode").bind("keyup change",function () { $(this).val($(this).val().replace(/\D/g,'')); if($(this).val().length==4){ /*ajax檢測驗證碼是否正確,正確則激活按鈕*/ }});