Я создал валидатор Captcha, но он переопределяет валидатор Dreamweaver Spry, который проверяет всю форму и отправляет ее.Как мне получить его, чтобы он добавлялся или работал с валидатором spry?Валидатор капчи приведен ниже.Я не хочу, чтобы он отправил форму.Я хочу, чтобы он перешел к валидатору spry, который проверяет всю форму.
function checkform(theform){
var why = "";
if(theform.txtInput.value == ""){
why += "- Security code should not be empty.\n";
}
if(theform.txtInput.value != ""){
if(ValidCaptcha(theform.txtInput.value) == false){
why += "- Security code did not match.\n";
}
}
if(why != ""){
alert(why);
return false;
}
}
// Validate the Entered input aganist the generated security code function
function ValidCaptcha(){
var str1 = removeSpaces(document.getElementById('txtCaptcha').value);
var str2 = removeSpaces(document.getElementById('txtInput').value);
if (str1 == str2){
return true;
}else{
return false;
}
}
// Remove the spaces from the entered and generated code
function removeSpaces(string){
return string.split(' ').join('');
}