web-dev-qa-db-ja.com

jQueryを使用してテキストエリアの行数を変更する方法

5行のテキストエリアがあります。 1行だけを表示したいのですが、フォーカスを合わせると残りの4行が表示されます。

21
Josh R

あなたはこのようなことを試すことができます:

     $(document).ready(function(){

    $('#moo').focus(function(){
        $(this).attr('rows', '4');
    });
});

ここで、mooはテキストエリアです。

30
jQuery(function($){
  $('#foo').focus(function(){
    $(this).attr('rows',5);
  }).blur(function(){
    $(this).attr('rows',1);
  });
});

または、使用するjQueryを減らし、入力を減らし、髪の毛のパフォーマンスを向上させます。

jQuery(function($){
  $('#foo')
    .focus(function(){ this.rows=5 })
    .blur( function(){ this.rows=1 });
});
6
Phrogz

これを試して

$('#textboxid').focus(function()
    {
       $(this).animate({'height': '185px'}, 'slow' );//Expand the textarea on clicking on it
       return false;
     });
0
Vish Kamath