如果您只指定“type=number”,它将在 iPhone 上显示键盘,如:
如果您指定类似<input type="number" pattern="\d*"/>
or的模式<input type="number" pattern="[0-9]*" />
,那么 iPhone 上的键盘将如下所示:
它仍然无法显示点(。),目前没有处理这种情况的模式。
因此,您可以选择<input type="tel" />
提供如下键盘的键盘:
有关 iOS 输入的更多详细信息,请参阅以下链接:
http://bradfrost.com/blog/mobile/better-numerical-inputs-for-mobile-forms/
http://blog.pamelafox.org/2012/05/triggering-numeric-keyboards-with-html5.html
https://about.zoosk.com/nb/engineering-blog/mobile-web-design-use-html5-to-trigger-the-appropriate-keyboard-for-form-inputs/
http://mobiforge.com/design-development/html5-mobile-web-forms-and-input-types
http://www.petefreitag.com/item/768.cfm
http://html5tutorial.info/html5-contact.php
希望这会帮助你。:)
自定义更新(参考:https ://stackoverflow.com/a/20021657/1771795 )
您可以使用 javascript 进行一些自定义。让我们以带小数模式的货币输入为例,在其中e.which
读取CharCode
输入,然后将其推入一个数组(之前),该数组表示小数点之前的数字,另一个数组(之后)将值从(之前)数组移动到小数点之后。
完整的小提琴链接
HTML:
<input type="tel" id="number" />
JS
变量和函数:
// declare variables
var i = 0,
before = [],
after = [],
value = [],
number = '';
// reset all values
function resetVal() {
i = 0;
before = [];
after = [];
value = [];
number = '';
$("#number").val("");
$(".amount").html("");
}
// add thousand separater
function addComma(num) {
return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
主要代码:
// listen to keyup event
$("#number").on("keyup", function (e, v) {
// accept numbers only (0-9)
if ((e.which >= 48) && (e.which <= 57)) {
// convert CharCode into a number
number = String.fromCharCode(e.which);
// hide value in input
$(this).val("");
// main array which holds all numbers
value.push(number);
// array of numbers before decimal mark
before.push(value[i]);
// move numbers past decimal mark
if (i > 1) {
after.push(value[i - 2]);
before.splice(0, 1);
}
// final value
var val_final = after.join("") + "." + before.join("");
// show value separated by comma(s)
$(this).val(addComma(val_final));
// update counter
i++;
// for demo
$(".amount").html(" " + $(this).val());
} else {
// reset values
resetVal();
}
});
重置:
// clear arrays once clear btn is pressed
$(".ui-input-text .ui-input-clear").on("click", function () {
resetVal();
});
结果: