zoukankan      html  css  js  c++  java
  • 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);
                        return $obj.css({height: $obj.attr('_initAdjustHeight'), 'overflow-y': 'hidden'})
                                .height( elem.scrollHeight );
                    }
                }
            });
            // 使用
            $(function(){
                $('textarea').autoHeight();
            });

  • 相关阅读:
    [总结]链表与栈
    统计学基础知识
    图卷积神经网络(GCN)入门
    [总结]字符串
    [总结]数组
    [总结]排序算法分析与实现
    [Leetcode]307. Range Sum Query
    深度解析Droupout与Batch Normalization
    深度解析Graph Embedding
    Console命令,让js调试更简单
  • 原文地址:https://www.cnblogs.com/chencheng365/p/4330042.html
Copyright © 2011-2022 走看看