我有一个文本区域,我希望高度自动增加,但它不起作用,这是我的jQuery:
$('.flat_textarea').delegate( 'textarea', 'keyup', function (){
$(this).height( 30 );
if(this.scrollHeight>30)
$(this).height(this.scrollHeight);
});
$('.flat_textarea').find( 'textarea' ).keyup();
$('.flat_textarea textarea').on("keyup",function (){
$(this).height( 30 );
if(this.scrollHeight>30)
$(this).height(this.scrollHeight);
});
HTML:
<form method="POST" class="flat_textarea" >
<textarea></textarea>
</form>