码迷,mamicode.com
首页 > Web开发 > 详细

HTML设置input框只能输入数字

时间:2020-06-21 15:36:53      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:htm   设置   onkeyup   inpu   sel   idt   style   input   code   

通过正则,设置input只能输入数字

onkeyup="this.value=this.value.replace(/\D/g,‘‘)"

代码如下

  <tr class="b">
    <td width="20%">價格</td>
    <td>
        <input class="input" type="text" onkeyup="this.value=this.value.replace(/\D/g,‘‘)" name="atc_money" value=‘$threads_buy_price‘ $htmlcolor $htmlsell>
    </td>
  </tr>

HTML设置input框只能输入数字

标签:htm   设置   onkeyup   inpu   sel   idt   style   input   code   

原文地址:https://www.cnblogs.com/camg/p/13172544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!