if(!number(oText.value)){alert"请输入。。。"}
这个是判断输入文本是否是数字的,但具体过程是怎样的啊,求详细分析。也就是这块的意思if(!number(oText.value))
这个是判断输入文本是否是数字的,但具体过程是怎样的啊,求详细分析。也就是这块的意思if(!number(oText.value))
2016-05-18
看不到你针对哪节课提的,我就自己写了
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<input class="oText" type="text">
<input type="button" onclick="alerta()" value="点击验证是否是数字">
<script>
function alerta(){
if(isNaN(document.getElementsByClassName("oText")[0].value))
{
alert("输入的不是数字,请重新输入");
document.getElementsByClassName("oText")[0].value="";
}
}
</script>
</body>
</html>
举报