我正在使用 Web 应用程序,我想在 textarea 获得焦点时使用动画效果调整 textarea 的大小(平滑调整大小)。
我尝试使用以下代码在焦点增益上调整 textarea 的大小,但它不能平滑地调整大小。
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type='text/javascript'>
function abc()
{
$('#txt').attr('rows',15);
}
</script>
</head>
<body>
<textarea id='txt' rows="4" onfocus='abc();' cols="50">
this is testing of textrea
</textarea>
</body>
</html>