我正在使用jquery:
$("input[name='first'], input[name='second'],
input[name='third']").bind("keypress", function(e) {
//how to determine which input is being entered
});
我有3个输入字段, 我想知道如何根据上述功能区分和确定哪个输入值是“打字时”。
答案 0 :(得分:1)
我们可以使用关键字this
$("input[name='first'], input[name='second'], input[name='third']").bind("keypress", function(e) {
console.log(this);
alert(this.name);
});