您当前的位置: 首页 >  ar
  • 4浏览

    0关注

    157博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Html-textarea 自动高度

牙膏上的小苏打2333 发布时间:2022-09-08 17:20:45 ,浏览量:4

🥙效果

请添加图片描述

🥗关键代码



    demo1
    
        textarea {
            width: 200px;
            min-height: 50px;
            padding: 0;
        }
     


     


    var textarea = document.querySelector('textarea');
    
    textarea.addEventListener('input', (e) => {
        textarea.style.height = '10px';
        textarea.style.height = e.target.scrollHeight + 'px';
    });
 

关注
打赏
1664520285
查看更多评论
立即登录/注册

微信扫码登录

0.0483s