Tenemos un TextBox (asp:TextBox ID=”txtAlfanumerico”) y deseamos que solo pueda introducir caracteres alfanuméricos.
jQuery validar un campo que permita valores alfanuméricos.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$(document).ready(function () { var soloAlfanumerico = { valor: function (str) { if (str.match(/[^0-9A-Za-z]/g)) { str = str.replace(/[^0-9A-Za-z]/g, ''); } return str; } } $('input[name$="txtAlfanumerico"]').keyup(function () { this.value = soloAlfanumerico.valor(this.value); }); }); |