angularjs怎么獲取p元素的height
1 回答

白豬掌柜的
TA貢獻1893條經(jīng)驗 獲得超10個贊
Angularjs限制textarea輸入字數(shù)的實現(xiàn)方法:在textarea上綁定一個變量ng-model="length",統(tǒng)計當前輸入的字數(shù),然后在綁定一個變量通過ng-disabled="length>=140",讓textarea變disabled,或者彈出框提示都可以。functionTextareaCtrl($scope){$scope.checkText=function(){if($scope.text.length>5){alert("textistoolong");$scope.text=$scope.text.substr(0,5);}};}
- 1 回答
- 0 關注
- 1255 瀏覽
添加回答
舉報
0/150
提交
取消