本文介绍了将新行字符添加到textarea而不是提交表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有文本区域的表单并按下回车键提交我的表单。我怎样才能让它添加一个新的行字符而不是表单提交。
解决方案
$('textarea')。keypress(function(event){
pre>
if(event.which == 13){
event.preventDefault();
var s = $(this) .val();
$(this).val(s +\ n);
}
});
I have a form with a text area and hitting the enter key submits my form. How can I make it to add a new line character instead of a form submit.
解决方案$('textarea').keypress(function(event) { if (event.which == 13) { event.preventDefault(); var s = $(this).val(); $(this).val(s+"\n"); } });
这篇关于将新行字符添加到textarea而不是提交表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!