当前位置: 移动技术网 > IT编程>开发语言>正则 > javascript中匹配价格的正则表达式

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

2017年12月12日  | 移动技术网IT编程  | 我要评论

景泰蓝主要原料,孟夏惜莲txt,豪门夜宴下载

复制代码 代码如下:

/^(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>

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网