我的textarea字段需要對字符進行計數,以顯示相對於定義的最大長度剩餘的字符數。 但是,當用戶輸入空格/換行符或從別處粘貼文本時,計數出錯。angular.js textarea字符計數以排除計數空格和換行
我需要知道角度是否有任何指令或方法來支持排除空格/換行符的計數。
<textarea class="form-control" maxlength="{{desc}}" my-maxlength = "{{desc}}" maxlen="maxlen" type="text" ng-model="problem.DESCRIPTION" aria-describedby="qDesc" id="questionDescription" name="questionDescription" ng-required="caseType" lang-check></textarea>
<p ng-show="problem.DESCRIPTION.length > (desc-5)" class="text-danger pull-right" id="qDesc">{{ desc - problem.DESCRIPTION.length}} {{ resource["textcount.sublabel.maximumcharacters"] }</p>
我不明白這是怎麼回事,以幫助OP爲* 「支持的空間排斥/換行符計」 * – Phil