只能輸入0-9多包括小數點
<html> <head> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> <title>js 只能輸入數字和小數點</title> <script language="JavaScript" type="text/javascript"> function clearNoNum(obj) { obj.value = obj.value.replace(/[^\d.]/g,""); //清除“數字”和“.”以外的字符 obj.value = obj.value.replace(/^\./g,""); //驗證第一個字符是數字而不是. obj.value = obj.value.replace(/\.{2,}/g,"."); //只保留第一個. 清除多余的. obj.value = obj.value.replace(".","$#$").replace(/\./g,"").replace("$#$","."); } </script> </head> <body> 只能輸入數字和小數點的文本框:<input name="input1" onkeyup="clearNoNum(this)"> </body> </html>
以上這篇文本框只能輸入數字的js代碼(含小數點)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。