混合应用程序中的iphone十进制键盘

时间:2016-03-12 08:53:39

标签: cordova ionic-framework keyboard decimal

我有一个数字字段,对可输入的金额没有限制。业务要求是显示小数键盘。我们使用输入类型=“数字”。这在android中运行良好。我在Edge测试过,这就像一个魅力。但默认键盘出现在iPhone中。我来之前在网上搜索过。但我找不到出路。这也没有现有的自定义cordova插件。 仅供参考 - 我们正在使用离子来构建这个应用程序。

2 个答案:

答案 0 :(得分:2)

您可以使用

<input type="number" pattern="[0-9]*">

<input type="text" pattern="\d*">

答案 1 :(得分:1)

我不认为在cordova iOS中显示小数键盘是可能的。

  

我终于写了一个新的插件   https://github.com/mrchandoo/cordova-plugin-decimal-keyboard

enter image description here