jQuery Event可以改变哪些值?

时间:2013-12-10 22:16:37

标签: jquery

我想更改 元素的默认行为:

$('form input').keypress(function (e) {
  if (e.which == 13) { // ENTER key
    e.setTempDefault(9); // TAB key
    // e.preventDefault();
  }
});

显然,setTempDefault不存在。

我能找到的只有e.preventDefault();

1 个答案:

答案 0 :(得分:5)

$('form input').keypress(function (e) {
    if (e.which === 13) {
        e.preventDefault();  
        $(':input').eq( $(this).index(':input') + 1 ).focus();
    }
});

FIDDLE