html中如何用js代码实现让一个文本框只能输入数字,且是100的倍数?其他的压根输不进去。
1个回答
2013-08-13
展开全部
用一个判断吧~~下面我写了一个代码希望能帮到楼主 if request("submit")<>"" then
if Isnumeric(request.form("txt"))=false or request.form("txt")=0 then '必须为数字
response.write("<script>alert('必须输入数字且不能为0!');")
response.write("window.history.go(-1);</script>")
else
if Instr(Request.form("txt")/100,".") <> 0 then '是否被100整除,
response.write("<script>alert('必须输入100的倍数!');")
response.write("window.history.go(-1);</script>")
end if
end if
end if希望能帮到楼主 望采纳~~
if Isnumeric(request.form("txt"))=false or request.form("txt")=0 then '必须为数字
response.write("<script>alert('必须输入数字且不能为0!');")
response.write("window.history.go(-1);</script>")
else
if Instr(Request.form("txt")/100,".") <> 0 then '是否被100整除,
response.write("<script>alert('必须输入100的倍数!');")
response.write("window.history.go(-1);</script>")
end if
end if
end if希望能帮到楼主 望采纳~~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询