Maxlength does not work with input type = "number" ionic

I am trying to determine the maxlength of a number input.

<label class="item item-input"> <i class="icon ion-android-call placeholder-icon"></i> <input type="number" placeholder="Phone number " maxlength="8"> </label> 

How can I restore it.

+5
source share
1 answer
  <input type="tel " maxlength="6"> 
+7
source

Source: https://habr.com/ru/post/1247755/


All Articles