2010-12-11 41 views

回答

25

你可以嘗試這樣的事情:

 $(document).ready(function(){ 

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

這裏哞是你的textarea的。

6
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 }); 
}); 
0

試試這個

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

:請更多的描述你的解決方案。請參閱:[如何回答](http://stackoverflow.com/questions/how-to-answer) – askmish 2012-10-20 01:27:23

相關問題