Form submitting when pressing enter in Textarea

后端 未结 3 525
小鲜肉
小鲜肉 2020-12-28 23:38

I\'ve been trying various methods to get a form to submit when hitting the enter key. I know it works with an input field, but because this is going to be a comment, it nee

3条回答
  •  感情败类
    2020-12-29 00:12

    I think you would also want to give users ability to go to new line using shift.

    $('.messageTextarea').on('keyup', function(e) {
        if (e.which == 13 && ! e.shiftKey) {
            // your AJAX call
        }
    });
    

    See this: http://jsfiddle.net/almirsarajcic/Gd8PQ/

    It worked for me.

    Also, you need to remove that submit button you currently have.

提交回复
热议问题