3
我需要在PHP和Jquery中爲tild(〜)和傾斜(`)字符進行很好的驗證。 這是Jquery驗證我所做的。PHP和JQuery中tild和傾斜字符的自定義驗證規則
$.validator.addMethod("validSMS", function(value, element) {
if (value.indexOf('~') === -1 || value.indexOf('`') === -1)
{
return true;
}
else
{
return false;
}
}, "Tild and tilt Character is not allowed");
但我需要另一個良好的方法在Jquery和PHP中進行驗證。
我沒有看到jQuery的 –
您的驗證ü可以給這個PHP驗證什麼問題? – Anu