我有以下验证代码,其中它仅过滤字母数字+空格文本...但是在测试两个带有空格的字母数字单词时,它失败了...
$.validator.addMethod("alphaNumeric", function(value, element) {
$(element).val(value.replace(/^\s+|\s+$/g,''));
return /^[a-zA-Z0-9 ]*$/.test(value);
}, " AlphaNumeric Only!");
我的代码有什么问题?