Change Enter from submission to Tab?

后端 未结 3 1433
眼角桃花
眼角桃花 2020-12-03 08:25

Users don\'t like the fact that the Enter key submits the page. So I am tasked with preventing the submission and changing the Enter key to a Tab to the next field.

3条回答
  •  我在风中等你
    2020-12-03 08:43

    $("input").bind("keydown", function(event) {
    
        if (event.which === 13 && this.type !== 'submit') {
            event.preventDefault();
            $(this).next("input").focus();
        }
    });
    

提交回复
热议问题