嗨我有一個文字區域的characeter計數器。我的問題是它不包括空格或換行符。我該如何做到這一點?angularjs文字區字符計數器
<div class="controls">
<textarea rows="4" cols="50" maxlength="1500" data-ng-minLength="1" data-ng
model="createprofilefields.description" required highlight-on-
error></textarea>
<br />
<!--counter-->
<span class="form-help">{{1500-createprofilefields.description.length}}
Characters</span>
</div>
您應該發佈您的控制器代碼,以便人們可以看到幕後發生了什麼。 – tamakisquare
控制器中沒有任何東西。 span標籤顯示的是1500-createprofilefields.length – user1424508
@tamakisquare不需要控制器代碼......'ng-model'自動創建範圍屬性。在這個例子中沒有關於控制器的信息。這些都是在摘要 – charlietfl