我正在编写一个函数,当键盘上的键按下时将调用该函数如何访问按下该键的文本框的值。我的代码是
function isValid(evt,that){
console.log('coming to this 1');
var charCode = (evt.which) ? evt.which : event.keyCode;
console.log(that.val());
return true;
}
$(document).on('keydown','.is_valid',isValid);
如何获取当前从键盘输入的文本框的值?请指导如何做到这一点