河北高端网站定制公司,定制app开发哪家合适,网页升级紧急通知中,网站常见错误切图网近期一个bootstrap5仿chatgpt页面的项目遇到的#xff0c;textarea文本框回车enter的时候自动提交表单#xff0c;根据内容自动高度#xff0c;代码如下#xff0c;亲测可用。 textarea placeholderMessage ChatGPT… name rowstextarea文本框回车enter的时候自动提交表单根据内容自动高度代码如下亲测可用。 textarea placeholderMessage ChatGPT… name rows cols idtextarea/textarea//输入框回车自动提交表单
$(#textarea).keydown(function() {
if (event.keyCode 13) {
this.form.submit();
return false;
}
});//输入框根据内容自动高度
$(#textarea).on(input, function() {
//var content $(this).val();
$(this).height(0);
$(this).height(this.scrollHeight-28);
});