Jquery Se il pulsante di opzione è selezionato


150

Possibile duplicato:
viene controllato il controllo del pulsante di opzione specifico

Ho questi 2 pulsanti di opzione al momento in modo che l'utente possa decidere se hanno bisogno dell'affrancatura inclusa nel prezzo o meno:

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

Devo usare Jquery per verificare se il pulsante di opzione "Sì" è selezionato e, in caso affermativo, eseguire una funzione di aggiunta. Qualcuno potrebbe dirmi come farei per favore?

Grazie per qualsiasi aiuto

modificare:

Ho aggiornato il mio codice con questo, ma non funziona. Sto facendo qualcosa di sbagliato?

<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: Al tuo aggiornamento: funziona perfettamente !
Shef,

È strano, non funziona sul mio sito web. Almeno so che il codice è giusto, proverò a trovare cosa c'è che non va, grazie per tutte le risposte!
Daniel H,

Risposte:


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

Oppure, quanto sopra - di nuovo - usando un po ' meno 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
        }
    });

Revisionato (migliorato-alcuni) 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();
        }
    });

Demo di JS Fiddle .

E, inoltre, un lieve aggiornamento (dal momento che stavo modificando per includere Snippet e i collegamenti JS Fiddle), al fine di avvolgere gli <input />elementi con <label>s - consentire di fare clic sul testo per aggiornare il pertinente <input />- e cambiare il modo di creare il contenuto da aggiungere:

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>

Demo di JS Fiddle .

Inoltre, se hai solo bisogno di mostrare il contenuto in base all'elemento che viene controllato dall'utente, un leggero aggiornamento che attiverà la visibilità usando uno show / hide esplicito:

// 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>

E, infine, 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>

Demo di JS Fiddle .

Riferimenti:


3
Non c'è bisogno di vedere se è controllato o no. Non avrà mai il valore altrimenti. Spreco di risorse!
Shef,

22

Prova questo

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

13

Qualcosa come questo:

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

3
L'oggetto jQuery è sempre vero. Potresti voler usare $(...).lengthinvece.
pimvdb,

Intendi #postageyes:checkedo $('#postageyes').is(':checked')?
Shef,

@pimvdb Secondo i documenti jQuery,is() restituisce un valore booleano. Quindi la chiamata .length()è rotta. Dai documenti: "A differenza di altri metodi di filtro, .is () non crea un nuovo oggetto jQuery. Invece, ti consente di testare il contenuto di un oggetto jQuery senza modifiche." - api.jquery.com/is
Asaph

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

Questo ascolterà un evento di modifica sui pulsanti di opzione. Nel momento in cui l'utente fa clic Yes, l'evento si attiva e sarai in grado di aggiungere tutto ciò che ti piace al DOM.


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

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

Non sei sicuro di questo, ma non $("#postageyes:checked"tornerà sempre vero? Non dovresti usarlo .lengthper farlo funzionare?
Phil

rimosso "o" e tutto il resto
genesi


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

Mentre questo frammento di codice può risolvere la domanda, inclusa una spiegazione aiuta davvero a migliorare la qualità del tuo post. Ricorda che stai rispondendo alla domanda per i lettori in futuro e che queste persone potrebbero non conoscere i motivi del tuo suggerimento sul codice.
Patrick Hund,

Fatto. La prossima risposta ne avrà una.
Benjamin,

0

Questo ascolterà l'evento modificato. Ho provato le risposte degli altri, ma quelle non hanno funzionato per me e alla fine questa ha funzionato.

$('input:radio[name="postage"]').change(function(){
    if($(this).is(":checked")){
        alert("lksdahflk");
    }
});
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.