移动端手机网站限制input只能输入数字

    <input type="tel" name="num" value="1" maxlength="8" autocomplete="off" class="amount_text fw c_fff"/>  

类型是  tel  类型,

    autocomplete="off" 是关闭 缓存。

 maxlength="8"   是限制 输入的 数字的个数。



原文地址:https://www.cnblogs.com/yjhua/p/4599797.html