只能输入数字和小数点的文本框
Html代码
- <html>
- <head>
- <meta httpequiv="contentType" content="text/html;charset=gb">
- </head>
- <body>
- <!把下面代码加到<body>与</body>之间>
- 只能输入数字和小数点的文本框<input onkeyup="value=valuereplace(/[^d]/g)">
- </body>
- </html>
<html><head><meta httpequiv="contentType" content="text/html;charset=gb"></head><body><!把下面代码加到<body>与</body>之间>只能输入数字和小数点的文本框<input onkeyup="value=valuereplace(/[^d]/g)"></body></html>
小数点判断
第一个输入必须是数字不能是小数点例如
不能存在多个连续只能一个例如
不多出现一个在不同地方例如
Html代码
- <html>
- <head>
- <meta httpequiv="contentType" content="text/html;charset=gb">
- <title>js 只能输入数字和小数点</title>
- <script language="JavaScript" type="text/javascript">
- function clearNoNum(obj)
- {
- //先把非数字的都替换掉除了数字和
- objobjvalue = objvaluereplace(/[^d]/g"");
- //必须保证第一个为数字而不是
- objobjvalue = objvaluereplace(/^/g"");
- //保证只有出现一个而没有多个
- objobjvalue = objvaluereplace(/{}/g"");
- //保证只出现一次而不能出现两次以上
- objobjvalue = objvaluereplace("""$#$")replace(//g"")replace("$#$""");
- }
- </script>
- </head>
- <body>
- <!把下面代码加到<body>与</body>之间>
- 只能输入数字和小数点的文本框<input id="input" onkeyup="clearNoNum(this)">
- </body>
- </html>
<html><head><meta httpequiv="contentType" content="text/html;charset=gb"><title>js 只能输入数字和小数点</title><script language="JavaScript" type="text/javascript"> function clearNoNum(obj) { //先把非数字的都替换掉除了数字和 objvalue = objvaluereplace(/[^d]/g""); //必须保证第一个为数字而不是 objvalue = objvaluereplace(/^/g""); //保证只有出现一个而没有多个 objvalue = objvaluereplace(/{}/g""); //保证只出现一次而不能出现两次以上 objvalue = objvaluereplace("""$#$")replace(//g"")replace("$#$"""); } </script></head><body><!把下面代码加到<body>与</body>之间>只能输入数字和小数点的文本框<input id="input" onkeyup="clearNoNum(this)"></body></html>