form中的單行文字取得與失去焦點
更改多行文字的高度
標題>
表格>
身體>
/**
* 多行文字方塊的高度調整
**/
$(函數 () {
var $comment = $('#comment');
$('.bigger').click(function () {
if(!$comment.is(":animated")) {
if($comment.height()
//$comment.height($comment.height() 50);//版本1
$comment.animate({高度: " =50"}, 400);
}
}
});
$('.smaller').click(function () {
if(!$comment.is(":animated")) {
if($comment.height() > 50) {
//$comment.height($comment.height() - 50);
$comment.animate({高度: "-=50"}, 400);
}
}
});
});
腳本>
改變了多行文字的捲軸高度
成分應用
標題>