HTML 中的input框对键盘得操作

1. H5禁止手机自带键盘弹出

// vue得写法
<input type="text" @focus="onChange" ref="test">
methods:{
	  onChange() {
          this.$refs.test.blur();
      },
}

2. H5直接调用手机的数字键盘

<h1>IOS</h1>
<input placeholder="输入数字" type="text" pattern="[0-9]*">

input框中将type = text 改成number , (安卓可以调起), ios也可以调起需要加上parttern = “\d*”

<input class="money-p" type="number" pattern="\d*">

你可能感兴趣的:(Html,H5)