各位看看这个验证码的方法怎么能执行?
function validate (){
var inputCode = document.getElementById("Tb_code").value;
if(inputCode.length <=0)
{
alert("请输入验证码!");
return false;
}
else if(inputCode != code )
{
alert("验证码输入错误!");
createCode();//刷新验证码
document.myform.Tb_code.focus();
return false;
}
}
function checkall()
{
if(document.myform.Tb_name.value=="")
{window.alert("用户名不能为空!");
document.myform.Tb_name.focus();
return false;
}
if(document.myform.Tb_name.value.length<=6)
{
window.alert("用户名不能小于6位!");
document.myform.Tb_name.focus();
return false;
}
if(document.myform.Tb_pwd.value=="")
{
window.alert("密码不能为空!");
document.myform.Tb_pwd.focus();
return false;
}
if(document.myform.Tb_pwd.value.length<=6)
{
window.alert("密码不能少于6!");
document.myform.Tb_pwd.focus();
return false;
}
if(document.myform.Tb_pwd.value!=document.myform.Tb_pwd2.value)
{
window.alert("两次密码输入不同!");
document.myform.Tb_pwd2.focus();
return false;
}
if(document.myform.Tb_Mem_email.value=="")
{window.alert("email不能为空");
document.myform.Tb_Mem_email.focus();
return false;
}
if(!checkEmail()){return false;}
if(!validate()){return false;}
return true;
}