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指令系列---多行文本框自动高度的主要内容,如果未能解决你的问题,请参考以下文章