Jquery从索引获取表单元素ID

时间:2014-03-01 18:35:35

标签: jquery css

这是一个简单的表格。我所理解的是,第一个输入索引= 0,第二个输入索引= 1,第三个输入索引= 2.我想使用jQuery来警告(手动)输入元素的ID(例如,在mouseenter或keypress上输入)通过使用其索引。例如,索引1上的mouseenter将alert "surname"

<form>
    <input type ="text" id ="name">
    <input type ="text" id ="surname">
    <input type ="password" id ="pass">
</form>

我只需要语法来从索引中检索Id。

1 个答案:

答案 0 :(得分:1)

您可以使用:

$('input').on('mouseenter keypress', function () {
    console.log(this.id); // I'm not using alert here since it's too annoying :P
})

<强> Fiddle Demo