精品主页 | 软件下载 | 系统下载 | 精品导航| 精彩图片 | 转帖工具 | 版主申请 | 影视下载
发新话题
打印

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

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

  


                  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>

TOP

发新话题