萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jquery 多行文本框(textarea)高度變化

jquery 多行文本框(textarea)高度變化

這篇文章介紹了多行文本框(textarea)高度變化的操作,有需要的朋友可以參考一下   復制代碼 代碼如下:


$(function(){
    var $comment = $('#comment');  //獲取評論框 
    $('.bigger').click(function(){ //放大按鈕綁定單擊事件 
       if(!$comment.is(":animated")){ //判斷是否處於動畫 
          if( $comment.height() < 500 ){ 
                $comment.animate({ height : "+=50" },400); //重新設置高度,在原有的基礎上加50 
          }
        }
    })
    $('.smaller').click(function(){//縮小按鈕綁定單擊事件 
       if(!$comment.is(":animated")){//判斷是否處於動畫 
            if( $comment.height() > 50 ){
                $comment.animate({ height : "-=50" },400); //重新設置高度,在原有的基礎上減50 
            }
        }
    });
});

copyright © 萬盛學電腦網 all rights reserved