How to move focus on next field when enter is pressed?

后端 未结 7 908
我在风中等你
我在风中等你 2020-12-29 06:02

Can you please tell me how to move focus on to the next field when the enter key is press? I use the dform plugin (which converts JSON to a form).

I Go

7条回答
  •  -上瘾入骨i
    2020-12-29 06:16

    it looks the same, but I offer something simple, maybe helpful, and easy to remember, and this is what I use

    html

    
    
    
    

    js

    $('INPUT').keydown( e => e.which === 13?$(e.target).next().focus():"");
    

提交回复
热议问题