正 文

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


www.7dspace.com  更新日期:2005-8-16 5:56:45  七度空间


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>

上一篇:为网页添加浮动广告
下一篇:使用Javascript制作行间颜色间隔
作者:  来源: ( 责任编辑:7dspace )
收藏此页】【打印】【关闭
站 内 搜 索
 

热 点 导 读
特 别 推 荐