我想将此函数添加到我的 JS 代码中:
JS 用户名验证器:防止某些字符。
jQuery.validator.addMethod("userNameRule", function(string, element) {return !string.match(/[-\.;,`~!@#\$%\^&\*\(\)\]\+=|\/\\{\[\}'":\?><]/g);});
以及如何添加到这个 JS 函数:
$('#button_sign_up').click(function()
{
if(userNameRule)
{
username can't contains characters.
}
}