how to expand a text area when click on

后端 未结 9 1293
感情败类
感情败类 2021-02-02 10:17

Im working on a small project which has a textarea and i need help in making the text area expand on mouse click like that of twitter and facebook. the textarea should look lik

9条回答
  •  深忆病人
    2021-02-02 10:45

    
    
    var ta = document.getElementById('ta');
    ta.onclick = function(){
        this.style.height = "400px";
    }  
    

    A quick fiddle: http://jsfiddle.net/n6sgT/

提交回复
热议问题