Jquery Si el botón de radio está marcado


150

Posible duplicado: se
verifica la comprobación del botón de opción específico

Tengo estos 2 botones de opción en este momento para que el usuario pueda decidir si necesita franqueo incluido en el precio o no:

<input type="radio" id="postageyes" name="postage" value="Yes" /> Yes
<input type="radio" id="postageno" name="postage" value="No" /> No

Necesito usar Jquery para verificar si el botón de opción 'sí' está marcado, y si es así, hacer una función de agregar. ¿Podría alguien decirme cómo haría esto, por favor?

Gracias por cualquier ayuda

editar:

He actualizado mi código a esto, pero no funciona. ¿Estoy haciendo algo mal?

<script type='text/javascript'>
// <![CDATA[
jQuery(document).ready(function(){

$('input:radio[name="postage"]').change(function(){
    if($(this).val() == 'Yes'){
       alert("test");
    }
});

});

// ]]>
</script>

1
@Daniel H: En su actualización: ¡ está funcionando bien !
Shef

Eso es extraño, simplemente no funciona en mi sitio web. Al menos sé que el código es correcto, intentaré encontrar qué le pasa, ¡gracias por todas las respuestas!
Daniel H

Respuestas:


285
$('input:radio[name="postage"]').change(
    function(){
        if ($(this).is(':checked') && $(this).val() == 'Yes') {
            // append goes here
        }
    });

O, lo anterior, nuevamente, usando un poco menos superfluo jQuery:

$('input:radio[name="postage"]').change(
    function(){
        if (this.checked && this.value == 'Yes') {
            // note that, as per comments, the 'changed'
            // <input> will *always* be checked, as the change
            // event only fires on checking an <input>, not
            // on un-checking it.
            // append goes here
        }
    });

Revisado (mejorado-algunos) jQuery:

// defines a div element with the text "You're appendin'!"
// assigns that div to the variable 'appended'
var appended = $('<div />').text("You're appendin'!");

// assigns the 'id' of "appended" to the 'appended' element
appended.id = 'appended';

// 1. selects '<input type="radio" />' elements with the 'name' attribute of 'postage'
// 2. assigns the onChange/onchange event handler
$('input:radio[name="postage"]').change(
    function(){

        // checks that the clicked radio button is the one of value 'Yes'
        // the value of the element is the one that's checked (as noted by @shef in comments)
        if ($(this).val() == 'Yes') {

            // appends the 'appended' element to the 'body' tag
            $(appended).appendTo('body');
        }
        else {

            // if it's the 'No' button removes the 'appended' element.
            $(appended).remove();
        }
    });

Demostración de JS Fiddle .

Y, además, una actualización moderada (ya que estaba editando para incluir fragmentos y los enlaces JS Fiddle), para envolver los <input />elementos con <label>s, permitir hacer clic en el texto para actualizar lo relevante <input />, y cambiar los medios para crear el contenido a agregar:

var appended = $('<div />', {
  'id': 'appended',
  'text': 'Appended content'
});
$('input:radio[name="postage"]').change(function() {
  if ($(this).val() == 'Yes') {
    $(appended).appendTo('body');
  } else {
    $(appended).remove();
  }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label>
  <input type="radio" id="postageyes" name="postage" value="Yes" />Yes</label>
<label>
  <input type="radio" id="postageno" name="postage" value="No" />No</label>

Demostración de JS Fiddle .

Además, si solo necesita mostrar contenido según el elemento que verifique el usuario, una ligera actualización que alternará la visibilidad mediante un show / hide explícito:

// caching a reference to the dependant/conditional content:
var conditionalContent = $('#conditional'),
    // caching a reference to the group of inputs, since we're using that
    // same group twice:
    group = $('input[type=radio][name=postage]');

// binding the change event-handler:
group.change(function() {
  // toggling the visibility of the conditionalContent, which will
  // be shown if the assessment returns true and hidden otherwise:
  conditionalContent.toggle(group.filter(':checked').val() === 'Yes');
  // triggering the change event on the group, to appropriately show/hide
  // the conditionalContent on page-load/DOM-ready:
}).change();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label>
  <input type="radio" id="postageyes" name="postage" value="Yes" />Yes</label>
<label>
  <input type="radio" id="postageno" name="postage" value="No" />No</label>
<div id="conditional">
  <p>This should only show when the 'Yes' radio &lt;input&gt; element is checked.</p>
</div>

Y, finalmente, usando solo CSS:

/* setting the default of the conditionally-displayed content
to hidden: */
#conditional {
  display: none;
}

/* if the #postageyes element is checked then the general sibling of
that element, with the id of 'conditional', will be shown: */
#postageyes:checked ~ #conditional {
  display: block;
}
<!-- note that the <input> elements are now not wrapped in the <label> elements,
in order that the #conditional element is a (subsequent) sibling of the radio
<input> elements: -->
<input type="radio" id="postageyes" name="postage" value="Yes" />
<label for="postageyes">Yes</label>
<input type="radio" id="postageno" name="postage" value="No" />
<label for="postageno">No</label>
<div id="conditional">
  <p>This should only show when the 'Yes' radio &lt;input&gt; element is checked.</p>
</div>

Demostración de JS Fiddle .

Referencias


3
No es necesario ver si está marcado o no. Nunca tendrá el valor de lo contrario. ¡Desperdicio de recursos!
Shef

22

Prueba esto

if($("input:radio[name=postage]").is(":checked")){
  //Code to append goes here
}

12

Algo como esto:

if($('#postageyes').is(':checked')) {
// do stuff
}

3
El objeto jQuery siempre es verdadero. Es posible que desee utilizar $(...).lengthen su lugar.
pimvdb

¿Quieres decir #postageyes:checkedo $('#postageyes').is(':checked')?
Shef

@pimvdb Según los documentos de jQuery,is() devuelve un valor booleano. Entonces, el llamado .length()está roto. De los documentos: "A diferencia de otros métodos de filtrado, .is () no crea un nuevo objeto jQuery. En cambio, le permite probar el contenido de un objeto jQuery sin modificación". - api.jquery.com/is
Asaph

7
$('input:radio[name="postage"]').change(function(){
    if($(this).val() === 'Yes'){
       // append stuff
    }
});

Esto escuchará un evento de cambio en los botones de radio. En el momento en que el usuario hace clic Yes, el evento se activará y podrá agregar todo lo que desee al DOM.


6
if($('#test2').is(':checked')) {
    $(this).append('stuff');
} 

4
$("input").bind('click', function(e){
   if ($(this).val() == 'Yes') {
        $("body").append('whatever');
   }
});

No estoy muy seguro de esto pero, ¿no $("#postageyes:checked"siempre será cierto? ¿No tendrías que usar .lengthpara que funcione?
Phil

eliminado "o" y todo después de eso
génesis


0
jQuery('input[name="inputName"]:checked').val()

Si bien este fragmento de código puede resolver la pregunta, incluir una explicación realmente ayuda a mejorar la calidad de su publicación. Recuerde que está respondiendo la pregunta para los lectores en el futuro, y que esas personas podrían no conocer los motivos de su sugerencia de código.
Patrick Hund

Entendido. La siguiente respuesta tendrá una.
Benjamin

0

Esto escuchará el evento cambiado. He intentado las respuestas de otros, pero esas no funcionaron para mí y finalmente, esta funcionó.

$('input:radio[name="postage"]').change(function(){
    if($(this).is(":checked")){
        alert("lksdahflk");
    }
});
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.