javascript验证浮点数该如何做?

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<title>标题页</title>

<script LANGUAGE="JavaScript">

function checkNum(str)

{

  

   if( str.match(/^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$/)== null)

      alert("非浮点数!");

   else

      alert("是浮点数!");

}

</script>

</head>

<body>
请输入一个浮点数,可以是负浮点数
<input type=text name="txt1" value="12.12">

<input type=button name="btn1" value="测试" onclick="checkNum(txt1.value)">

</body>

</html>


你可能感兴趣的:(JavaScript,html,测试,null,input,button)