DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> jquery 多行文本框(textarea)高度變化
jquery 多行文本框(textarea)高度變化
編輯:JavaScript綜合知識     
這篇文章介紹了多行文本框(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 
            }
        }
    });
});

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved