0
我想將此函數添加到我的JS代碼中:將JS函數添加到jQuery驗證中
JS用戶名驗證器:阻止某些字符。
jQuery.validator.addMethod("userNameRule", function(string, element) {return !string.match(/[-\.;,`[email protected]#\$%\^&\*\(\)\]\+=|\/\\{\[\}'":\?><]/g);});
以及如何增加這個JS功能:
$('#button_sign_up').click(function()
{
if(userNameRule)
{
username can't contains characters.
}
}
有什麼建議?