20

I have two problems in my Ionic/Cordova app, both with numeric keyboard that I not have option to show it.

1) Password input that needs to show a numeric keyboard. It's showing a alpha numerical keyboard. If I change to numeric, I can't hide the entries (with *).

2) Numeric input that I have to insert currency mask (left to right). All options that I find runs in text input.

Anybody help me? Please!

4

7 回答 7

20

我用 CSS 解决了:

<input type="number" style="-webkit-text-security:disc">

谢谢大家的帮助!

于 2015-12-04T15:47:58.527 回答
18

我用电话解决了:

<input type="tel">
于 2016-11-25T16:54:57.570 回答
6

我正在使用
<ion-input type="number" pattern="\d*"></ion-input> 它正在工作

安卓键盘

于 2019-08-27T10:24:05.983 回答
5

旧的,但我只是遇到了这个问题。

我解决了它的输入:

  type="number"
  pattern="[0-9]*"

希望能帮助到你。

于 2018-04-24T12:54:16.080 回答
5

2)我必须插入货币掩码的数字输入(从左到右)。我发现的所有选项都在文本输入中运行。

使用http://www.numbox.org您可以解决第二个问题。

于 2016-10-28T10:39:09.240 回答
2

使用模式属性: <input type="tel" pattern="[0-9]*">

于 2019-07-19T12:18:00.693 回答
0

尝试将此添加到您的输入中, onkeypress='return event.charCode >= 48 && event.charCode <= 57'

于 2015-12-03T03:52:49.487 回答