动态TextArea高度

时间:2016-03-07 13:34:08

标签: javascript jquery html

我确信cl.exe的高度会根据内容(而不是滚动)而改变。但是默认高度是32px而不是16px,我该怎么改变它。

HTML:

textarea

的Javascript / jQuery的:

<textarea id="cryTextArea" style="background:#fff; border:dashed #bc2122 1px; height:auto; width:100%;"></textarea>

see fiddle

2 个答案:

答案 0 :(得分:3)

假设我理解正确,您的textarea默认显示2行,并且您只想显示一行。 在HTML中,您可以定义要显示的行数。像这样:

client = ClientBuilder.newClient(config);

答案 1 :(得分:0)

试试这个:LINK

   <html>
    <head>
    <script>
    function textAreaAdjust(o) {
        o.style.height = "1px";
        o.style.height = (25+o.scrollHeight)+"px";
    }
    </script>
    </head>
    <body>
    <textarea onkeyup="textAreaAdjust(this)" style="overflow:hidden"></textarea>
    </body>
    </html>