·您的位置: 首页 » 资源教程 » 编程开发 » JavaScript » 判断表单中添加是否数字的JS与VBS代码

判断表单中添加是否数字的JS与VBS代码

类别: JavaScript教程  评论数:0 总得分:0
1.用javascript判断 [isNaN()]
JS代码:
<script language="javascript">
function check(formname){
if (isNaN(formname.price.value)){
alert('请输入数字');
formname.price.focus();
return false;
}
alert('是数字,通过');
return true;
}
</script>

调用:
<form name="form1" method="post" action="" onsubmit="check(this)">
<input type="text" name="price">
<input type="submit" name="Submit" value="提交">
</form>

2.用VBscript判断[isnumeric()]
跟上面的类似,用isnumeric()函数即可
<script language=vbscript>
sub isnum(param)
if not isnumeric(param) then
msgbox("请输入数字")
end if
end sub
</script>
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1