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

js判斷輸入的值是否是數字

<!DOCTYPE html>
<html>
<head>
<title>表單驗證</title>
<style>
#box{width:250px; height:260px; background-color: black; color:white;}
</style>
<script type="text/javascript">
function fun()
{
	var a=document.getElementById('zhi').value;
	if(isNaN(a)==true)
	{
		alert('不是數字哦');
		document.getElementById('zhi').value='';
	}
}
</script>
<body>
請輸入,判斷是否為數字:<input type='text' id='zhi' onkeyup='fun()' />
</body> 
</html>