1. 程式人生 > >js判斷輸入是否是純數字

js判斷輸入是否是純數字

<!DOCTYPE html>
<html>
<body>

<p>請輸入數字。如果輸入值不是數字,瀏覽器會彈出提示框。</p>

<input id="demo" type="text">

<script>
function myFunction()
{
var x=document.getElementById("demo").value;
if(x==""||isNaN(x))
	{
	alert("Not Numeric");
	}
}
</script>

<button type
="button" onclick="myFunction()">
點選這裡</button> </body> </html>