我正在使用以下代码将字符限制为文本框中的字母和数字
$('#tt').on("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;
}
return false;
});
使用上述代码有哪些注意事项?在 jQuery 中有没有更好的方法来做到这一点?