“Verifique se o botão de rádio está selecionado jQuery” Respostas de código

JQuery Verifique um botão de rádio

// jQuery version 1.6 or above use:  
$("#myRadioID").prop("checked", true);
 
//jQuery versions below 1.6 use:
$("#myRadioID").attr('checked', 'checked');
Grepper

Se o rádio checou jQuery

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

Verifique o botão de rádio está verificado 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

Como posso saber qual botão de rádio é selecionado via jQuery

if ($('input[name="radioName"]:checked', '#myForm').length) {
	//Yes, it's checked!
}
Matteoweb

Rádio JQuery Chek

//<input type="radio" name="book_condition" value="3" >
$("input:radio[value='3'][name='book_condition']").prop('checked',true);
Prasad Gayan

Verifique se o botão de rádio está selecionado jQuery

/*
	A quick way to check if a radio button as been checked is by using
    the .is(":checked") fucntion. A small example below :)
*/
var myElem = jQuery('#elemId'); // select the radio element
var testResult = myElem.is(":checked"); // returns true if checked, else false
CoderHomie

Respostas semelhantes a “Verifique se o botão de rádio está selecionado jQuery”

Perguntas semelhantes a “Verifique se o botão de rádio está selecionado jQuery”

Mais respostas relacionadas para “Verifique se o botão de rádio está selecionado jQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código