angular指令系列---多行文本框自动高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular指令系列---多行文本框自动高度相关的知识,希望对你有一定的参考价值。

angular.module(‘MyApp‘)
    .directive(‘autoTextare‘, [‘$timeout‘, function ($timeout) {
        return {
            restrict: ‘A‘,
            require: ‘^?ngModel‘,
            link: function ($scope, iElm, iAttrs, controller) {
                var nowEle = angular.element(iElm[0]);
                $timeout(function () {
                    nowEle.css(‘height‘, ‘auto‘);
                    nowEle.css(‘height‘, iElm[0].scrollHeight + ‘px‘);
                }, 100)
                iElm.on(‘input‘, function (event) {
                    nowEle.css(‘height‘, ‘auto‘);
                    nowEle.css(‘height‘, this.scrollHeight + ‘px‘);
                })
            }
        }
    }])
    

 

以上是关于angular指令系列---多行文本框自动高度的主要内容,如果未能解决你的问题,请参考以下文章

Angular - Textarea 自动高度不会在文本删除时自动调整大小

多行文本框的高度变化

textarea多行文本框自适应高度

在多行文本框上设置最大字符(可见性允许)

Angular js自动完成预先输入

闪亮的多行文本输入