<html>
<head>
<title>禁止输入小于0的数,最小为1</title>
<script type="text/javascript">
function CheckInputInt(oInput) {
if ('' != oInput.value.replace(/\d/g,''))
{
oInput.value = oInput.value.replace(/\D/g,'');
}
if(parseInt(oInput.value)<0.1){
oInput.value="1";
}
}
</script>
</head>
<body>
禁止输入小于0的数<input type="text" name="num" onkeyup="CheckInputInt(this);" onblur="CheckInputInt(this);" onafterpaste="CheckInputInt(this);" />
</body>
</html>
本文介绍了一个简单的JavaScript函数,用于防止用户在输入框中输入小于0的数值,并确保最小值为1。此验证适用于HTML页面中的文本输入框。
9485

被折叠的 条评论
为什么被折叠?



