Tengo esto en mi javascript:
Cita:
Estos son los radios buttons:function validate(){
var typeSearch = document.frmSearch.optionsSuccess.value; // Lo hice así primeramente.
var typeSearch = document.getElementsByName('optionsSuccess'); // Luego así también y tampoco funciono.
var radio = typeSearch .value;
if(typeSearch == 'Y' || typeSearch == 'N' || typeSearch =='B'){
alert('Exito!');
}else{
alert('Error!');
}
if(radio == 'Y' || radio == 'N' || radio == 'B'){
alert('Funciono la segunda opcion!');
}else{
alert('Error en segunda opcion tambien!');
}
}
var typeSearch = document.frmSearch.optionsSuccess.value; // Lo hice así primeramente.
var typeSearch = document.getElementsByName('optionsSuccess'); // Luego así también y tampoco funciono.
var radio = typeSearch .value;
if(typeSearch == 'Y' || typeSearch == 'N' || typeSearch =='B'){
alert('Exito!');
}else{
alert('Error!');
}
if(radio == 'Y' || radio == 'N' || radio == 'B'){
alert('Funciono la segunda opcion!');
}else{
alert('Error en segunda opcion tambien!');
}
}
Código HTML:
<form id="frmSearch" name="frmSearch" method="post"> <input type="radio" checked="true" name="optionsSuccess" value="Y"> <input type="radio" name="optionsSuccess" value="N"> <input type="radio" name="optionsSuccess" value="B"> <input type="submit" id="Search" name="Search" value="Search" onclick="return validate()"/> </form>