我必須將一個額外的參數傳遞給funcCall方法。怎麼做?我在參數中使用了什麼?我需要添加另一個參數,可能是這樣的。如何將參數傳遞給jQuery驗證中的funcCall
<input type="text" id="phone" class="validate[funcCall[checkPhoneNumber["phone"]]]"/><input type="text" id="mobile" class="validate[funcCall[checkPhoneNumber["mobile"]]]"/>
我需要在下面的方法中添加開關盒的手機和手機將具有不同的正則表達式。
function checkPhoneNumber(field, rules, i, options){
alert(i);
if (!field.val().match(/^[0-9]{8,15}$/))
return options.allrules.phone.alertText;
else if (!field.val().match(/([^((\+)*(0*))])/))
return options.allrules.phone.alertText;
}
它很難猜測沒有看到相關代碼... – Rafay