正則表達式的使用

Js代碼 
function checkTaxpayerCode(s){ 
    var regexp = /^[A-Za-z0-9]{6,10}$/; 
    if(regexp.test(s)){ 
        $("#messageId").empty(); 
        return true; 
    }else{ 
        $("#messageId").append("輸入的格式不正確,隻能輸入數字和字母,最少6位最多10位數字"); 
        return false; 
    } 

作者“chelsi”
 

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *