我寫了下面的代碼來驗證自定義地址,但不能使它工作jQuery的正則表達式驗證客戶地址
我希望讓所有的字母,數字,空格和符號,如:只-_,/。下面我的代碼不起作用,請幫我解決它。
$('.allowall').keypress(function(e) {
var regex = new RegExp("^[a-zA-Z0-9.-_/ ]+$");
var str = String.fromCharCode(!e.charCode ? e.which : e.charCode);
if (regex.test(str)) {
return true;
}
e.preventDefault();
return false;
});
拉胡特爾的答案是正確的,請接受它。 –