Jquery Se o botão de opção estiver marcado

149

Possível duplicado: a
verificação do botão de opção específico está marcada

No momento, tenho esses 2 botões de opção para que o usuário possa decidir se precisa de postagem incluída no preço ou não:

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

Preciso usar o Jquery para verificar se o botão de opção 'yes' está marcado e, se estiver, faça uma função de acréscimo. Alguém poderia me dizer como eu faria isso, por favor?

Obrigado por qualquer ajuda

editar:

Atualizei meu código para isso, mas não está funcionando. Estou fazendo algo errado?

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

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

});

// ]]>
</script>
Daniel H
fonte
1
@ Daniel H: Na sua atualização: está funcionando muito bem !
Shef 11/07
Estranho, simplesmente não está funcionando no meu site. Pelo menos eu sei que o código está certo, vou tentar descobrir o que há de errado com ele, obrigado por todas as respostas!
Daniel H

Respostas:

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

Ou, acima - novamente - usando um jQuery um pouco menos supérfluo:

$('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
        }
    });

JQuery revisado (melhorado):

// 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();
        }
    });

Demonstração JS Fiddle .

Além disso, uma atualização suave (desde que eu estava editando para incluir Snippets e os links JS Fiddle), para agrupar os <input />elementos com <label>s - permitir clicar no texto para atualizar o relevante <input />- e alterar os meios de criação do conteúdo a acrescentar:

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>

Demonstração JS Fiddle .

Além disso, se você precisar apenas exibir conteúdo, dependendo do elemento verificado pelo usuário, uma pequena atualização que alternará a visibilidade usando um 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>

E, finalmente, usando apenas 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>

Demonstração JS Fiddle .

Referências:

David diz para restabelecer Monica
fonte
3
Não há necessidade de verificar se está marcado ou não. Caso contrário, nunca terá o valor. Desperdício de recursos!
Shef 11/07
22

Tente isto

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

Algo assim:

if($('#postageyes').is(':checked')) {
// do stuff
}
Mrchief
fonte
3
O objeto jQuery é sempre verdadeiro. Você pode usar em seu $(...).lengthlugar.
Pimvdb
Você quer dizer #postageyes:checkedou $('#postageyes').is(':checked')?
Shef 11/07
@pimvdb De acordo com os documentosis() do jQuery, retorna um booleano. Então o chamado .length()está quebrado. Na documentação: "Ao contrário de outros métodos de filtragem, .is () não cria um novo objeto jQuery. Em vez disso, permite testar o conteúdo de um objeto jQuery sem modificação." # api.jquery.com/is
Asaph
7
$('input:radio[name="postage"]').change(function(){
    if($(this).val() === 'Yes'){
       // append stuff
    }
});

Isso ouvirá um evento de alteração nos botões de opção. No momento em que o usuário clica Yes, o evento será acionado e você poderá anexar qualquer coisa que desejar ao DOM.

Shef
fonte
6
if($('#test2').is(':checked')) {
    $(this).append('stuff');
} 
Phil
fonte
4
$("input").bind('click', function(e){
   if ($(this).val() == 'Yes') {
        $("body").append('whatever');
   }
});
gênese
fonte
Não tenho muita certeza disso, mas nem $("#postageyes:checked"sempre retornará verdadeiro? Você não precisaria usar o .lengthpara que ele funcionasse?
Phil
removido "ou" e tudo depois disso
genesis
3

Tente o seguinte:

if ( jQuery('#postageyes').is(':checked') ){ ... }
Justin Ethier
fonte
0
jQuery('input[name="inputName"]:checked').val()
Benjamin
fonte
Embora esse trecho de código possa resolver a questão, incluir uma explicação realmente ajuda a melhorar a qualidade da sua postagem. Lembre-se de que você está respondendo à pergunta dos leitores no futuro e essas pessoas podem não saber os motivos da sua sugestão de código.
Patrick Hund
Entendi. A próxima resposta terá uma.
Benjamin Benjamin
0

Isso ouvirá o evento alterado. Eu tentei as respostas de outras pessoas, mas elas não funcionaram para mim e, finalmente, esta funcionou.

$('input:radio[name="postage"]').change(function(){
    if($(this).is(":checked")){
        alert("lksdahflk");
    }
});
MS Shohan
fonte