首页 > 编程 > Regex > 正文

javascript中匹配价格的正则表达式

2020-03-16 21:10:12
字体:
来源:转载
供稿:网友
价格的格式应该如下,开头数字若干位,可能有一个小数点,小数点后面可以有两位数字。hansir给出的对应正则如下
 
 
复制代码代码如下:

/^(d*.d{0,2}|d+).*$/ 

hansir给出的测试代码如下: 
复制代码代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>无标题文档</title> 
<script type="text/javascript"> 
function checkPrice(me){ 
if(!(/^(?:d+|d+.d{0,2})$/.test(me.value))){ 
me.value = me.value.replace(/^(d*.d{0,2}|d+).*$/,'$1'); 


</script> 
</head> 
<body> 
<input type="text" onkeyup="checkPrice(this);"/> 
</body> 
</html> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表