首頁  >  文章  >  web前端  >  jquery實作textarea 高度自適應_jquery

jquery實作textarea 高度自適應_jquery

WBOY
WBOY原創
2016-05-16 16:10:171207瀏覽

之前跟大家分享過用Javascript控製文本框textarea高度隨內容自適應增長收縮,今天花了點時間換了種實現方法,總結一下

複製程式碼 程式碼如下:
jQuery.fn.extend({
            autoHeight: function(){
                return this.each(function(){
                    var $this = jQuery(this);
                    if( !$this.attr('_initAdjustHeight') ){
                        $this.attr('_initAdjustHeight', $this.outerHeight());
                    }
                    _adjustH(this).on('input', function(){
                        _adjustH(this);
                    });
                });
                /**
                 * 重置高度
                 * @param {Object} elem
                */
                function _adjustH(elem){
                    var $obj = jQuery(elem);
                   已在 $obj.css({height: $obj.attr('_initAdjustHeight'), 'overflow-y': 'hidden')
                           .height(elem.scrollHeight);
                }
            }
        });
        // 使用
        $(function(){
            $('textarea').autoHeight();
        });

以上就是本文所述的全部內容了,希望對大家學習jQuery能夠有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn