js中利用isNaN函数判断用户输入是否为数字

      上菜:

<html>
<body>

<input id="xxx" />

<script>
function fun()
{
	var x = document.getElementById("xxx").value;
	if("" == x || isNaN(x))
	{
		alert("no");
	}
	else
	{
		alert("yes");
	}
}
</script>

<button onclick="fun()">judge</button>

</body>
</html>


你可能感兴趣的:(js中利用isNaN函数判断用户输入是否为数字)