angular2 を使用して電話番号フィールドを 10 文字に制限するにはどうすればよいですか。ng-maxlenthを使用してみましたが、ブラウザーでのみ機能し、Android デバイスでは機能しません。
angular 1 を使用したコード スニペットを 1 つ見つけました。
app.directive("limitTo", [function() {
return {
restrict: "A",
link: function(scope, elem, attrs) {
var limit = parseInt(attrs.limitTo);
angular.element(elem).on("keypress", function(e) {
if (this.value.length == limit) e.preventDefault();
});
}
}
}]);
<input limit-to="4" type="number" class="form-control input-lg" ng-model="search.main" placeholder="enter first 4 digits: 09XX">