jquery ctrl+enter as enter in text area

后端 未结 6 1942
南旧
南旧 2020-12-30 07:33

I am trying to reproduce standard instant messenger behavior on TEXT area control: enter works as send button. ctrl+enter as real enter.

 $(\"#txtChatMessag         


        
6条回答
  •  臣服心动
    2020-12-30 08:09

    If you can stick with Shift+Enter instead of Ctrl+Enter then the solution is trivial. You don't need any special code as Shift+Enter triggers a line break automatically. Just catch plain Enter to do the sending.

提交回复
热议问题