码迷,mamicode.com
首页 > 其他好文 > 详细

只能输入数字和小数点的正则

时间:2021-05-24 05:16:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:off   htm   com   complete   price   key   ice   plain   class   

<input type="text" autocomplete="off" id="price" autofocus="autofocus" onkeyup="value=value.replace(/[^\d^\.]+/g,‘‘)">

 

 onkeyup="value=value.replace(/[^\-?\d.]/g,‘‘)"  仅允许输入:正负小数。 

 

<input type="text" autocomplete="off" id="price" autofocus="autofocus" onkeyup="value=value.replace(/[^\d^\.]+/g,‘‘).replace(‘.‘,‘$#$‘).replace(/\./g,‘‘).replace(‘$#$‘,‘.‘)"> 仅允许输入一个小数点。

 

只能输入数字和小数点的正则

标签:off   htm   com   complete   price   key   ice   plain   class   

原文地址:https://www.cnblogs.com/liweigang/p/14754603.html

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