本文介绍了在textarea中按Enter键提交值,按Shift + Enter键应转到下一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要一个聊天框(textarea),如果用户按Enter键,则应提交聊天,如果用户按Shift + Enter,则应输入新行。
I want to have a chat box (textarea) where if user press Enter then it should submit the chat, and if user press Shift+Enter then it should enter in a new line.
我尝试了一些但却无法弄清楚确切的keyup或keydown事情。我目前使用的代码是:
I tried something but not able to figure out the exact keyup or keydown thing. The code I'm using at the moment is:
$("textarea").keydown(function(e){
if (e.keyCode == 13 && !e.shiftKey)
{
e.preventDefault();
}
});
这篇关于在textarea中按Enter键提交值,按Shift + Enter键应转到下一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!