“Compruebe si el botón de radio está marcado” Código de respuesta

Compruebe si el botón de radio está marcado

$('#element').click(function() {
   if($('#radio_button').is(':checked')) { alert("it's checked"); }
});
Pan Dziad

Verificar el botón de radio está revisado jQuery

$(document).ready(function(){
  $('#submit_button').click(function() {
    if (!$("input[name='name']:checked").val()) {
       alert('Nothing is checked!');
        return false;
    }
    else {
      alert('One of the radio buttons is checked!');
    }
  });
});
Lokesh003Coding

JS Compruebe si se verifica el botón de radio

if(document.getElementById('gender_Male').checked) {
  //Male radio button is checked
}else if(document.getElementById('gender_Female').checked) {
  //Female radio button is checked
}
Stupid Squirrel

Valor del botón de radio JavaScript si se verifica

//alert(document.querySelector('input[name = "comp"]:checked').value);

$test=document.querySelector('input[name = "comp"]:checked').value;

if($test="silver") {
        amount=50;
    }else if($test="gold") {
      amount=90;
    }else{
      amount=30;
    }
Mohamed Sami khiari

Compruebe si se verifica uno de los botones de radio


      if ($('input[name='+ radioName +']:checked').length) {
           // at least one of the radio buttons was checked
           return true; // allow whatever action would normally happen to continue
      }
      else {
           // no radio button was checked
           return false; // stop whatever action would normally happen
      }
    
syeddeveloper

Respuestas similares a “Compruebe si el botón de radio está marcado”

Preguntas similares a “Compruebe si el botón de radio está marcado”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código