Is there anyway to have a textarea “autofit” height based on the content at page load?

前端 未结 13 1752
借酒劲吻你
借酒劲吻你 2020-12-15 17:46

Is there anyway through CSS or Javascript set the height of the textarea based on the content? I have a hardcoded height in my CSS but i wanted it to default so there is no

13条回答
  •  醉话见心
    2020-12-15 18:14

    How about http://www.jacklmoore.com/autosize/ Drop Autosize into any web page and it should Just Work. The source is short and well commented if you are curious to how it works.

    // Example:
    $(document).ready(function(){
        $('textarea').autosize();   
    });
    

    Source: https://github.com/jackmoore/autosize

    Demo: http://www.jacklmoore.com/autosize/

提交回复
热议问题