input三种类型的调起number类型的方式:

1、input type="number"类型:

<input type="number" name="" id="" value="" placeholder="number"/>

input 数字类型



2、input type="tel"类型:

<input type="tel" name="" id="" value="" placeholder="tel"/>

input 数字类型

3、input type="text"类型 (pattern="[0-9]*":调起九宫格数字键盘):

<input type="text" pattern="[0-9]*" name="" id="" value="" placeholder="[0-9]*"/>

input 数字类型

另外还有些小技巧 (写在input标签内的属性):

<!--撤销键盘首字母大写-->
<!--autocapitalize="off"-->
<!--撤销键盘字母提示-->
<!--autocorrect="on"-->
<!--autocorrect="off"-->

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-28
  • 2022-12-23
  • 2021-11-20
  • 2021-11-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2022-03-08
  • 2022-01-20
  • 2022-12-23
相关资源
相似解决方案