textarea高度随内容自适应以及禁止拖拽大小

textarea {
width: 100%;
border: none;
resize: none; /* 禁止拖拽大小 */
background: unset;
}
随内容自适应高度:
js:
var tt = document.getElementById("textarea");
tt.style.height=tt.scrollHeight + 'px';

jquery:
$("#textarea")[0].style.height=$("#textarea")[0].scrollHeight + 'px';


posted @ 2021-09-16 16:34  金刀3691  阅读(294)  评论(0编辑  收藏  举报