zoukankan      html  css  js  c++  java
  • 文本输入框自适应高度

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
        <HTML>

        <HEAD>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <TITLE>文本框textarea高度自适应增长/伸缩</TITLE>
        </HEAD>

        <BODY>
            <textarea id="txtContent1" rows="5" cols="50" onkeyup="ResizeTextarea(1)" style="overflow-y:hidden;resize: none;">Textarea高度随内容自适应地增长,无滚动栏
            </textarea>
            <script type="text/javascript">
                 // 最小高度
                var minRows = 5;
                 // 最大高度。超过则出现滚动栏
                var maxRows = 60;

                function ResizeTextarea(index) {
                    var t = document.getElementById('txtContent' + index);
                    if (t.scrollTop == 0) t.scrollTop = 1;
                    while (t.scrollTop == 0) {
                        if (t.rows > minRows)
                            t.rows--;
                        else
                            break;
                        t.scrollTop = 1;
                        if (t.rows < maxRows)
                            t.style.overflowY = "hidden";
                        if (t.scrollTop > 0) {
                            t.rows++;
                            break;
                        }
                    }
                    while (t.scrollTop > 0) {
                        if (t.rows < maxRows) {
                            t.rows++;
                            if (t.scrollTop == 0) t.scrollTop = 1;
                        } else {
                            t.style.overflowY = "auto";
                            break;
                        }
                    }
                }
            </script>
        </BODY>

        </HTML>

    自增前:


    自增后:


  • 相关阅读:
    Springboot整合MongoDB的Docker开发,其它应用也类似
    Docker可视化工具Portainer
    Mac上使用Docker Desktop启动Kubernetes,踩坑后终于搞掂
    Docker入门——理解Docker的核心概念
    删库吧,Bug浪——我们在同一家摸鱼的公司
    一键下载网页所有图片,把美丽存下来
    序列推荐(transformer)
    [论文笔记] An introduction to ROC analysis
    【推荐算法工程师技术栈系列】分布式&数据库--tensorflow
    [论文翻译]Practical Diversified Recommendations on YouTube with Determinantal Point Processes
  • 原文地址:https://www.cnblogs.com/yfceshi/p/7071649.html
Copyright © 2011-2022 走看看