Jquery Если установлен переключатель - PullRequest
134 голосов
/ 11 июля 2011

Возможный дубликат:
Проверяется проверка конкретной радиокнопки

В данный момент у меня есть эти 2 переключателя, чтобы пользователь мог решить, нужно ли ему включать стоимость доставки в цену:

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

Мне нужно использовать Jquery, чтобы проверить, установлен ли переключатель «да», и, если это так, выполнить функцию добавления. Может кто-нибудь сказать мне, как я это сделаю, пожалуйста?

Спасибо за любую помощь

редактирование:

Я обновил свой код до этого, но он не работает. Я что-то не так делаю?

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

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

});

// ]]>
</script>

Ответы [ 9 ]

257 голосов
/ 11 июля 2011
$('input:radio[name="postage"]').change(
    function(){
        if ($(this).is(':checked') && $(this).val() == 'Yes') {
            // append goes here
        }
    });

Или выше - снова - используя немного меньше лишних 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
        }
    });

Пересмотрено (улучшено-немного) 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();
        }
    });

var appended = $('<div />').text("You're appendin'!");
appended.id = 'appended';
$('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/1.6.2/jquery.min.js"></script>
<input type="radio" id="postageyes" name="postage" value="Yes" />Yes
<input type="radio" id="postageno" name="postage" value="No" />No

Демонстрация JS Fiddle .

И, кроме того, небольшое обновление (поскольку я редактировал, чтобы включить фрагменты, а также ссылки JS Fiddle), чтобы обернуть элементы <input /> с <label> s - позволяет щелкать текст, чтобы обновить релевантный <input /> - и изменение способа создания контента для добавления:

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>

JS Fiddle demo .

Кроме того, если вам нужно только показать контент в зависимости от того, какой элемент проверен пользователем, небольшое обновление, которое переключит видимость с помощью явного показа / скрытия:

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

И, наконец, используя только 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>

Демонстрация JS Fiddle .

Ссылки:

20 голосов
/ 11 июля 2011

Попробуйте это

if($("input:radio[name=postage]").is(":checked")){
  //Code to append goes here
}
9 голосов
/ 11 июля 2011

Примерно так:

if($('#postageyes').is(':checked')) {
// do stuff
}
7 голосов
/ 11 июля 2011
$('input:radio[name="postage"]').change(function(){
    if($(this).val() === 'Yes'){
       // append stuff
    }
});

Будет прослушиваться событие изменения радиокнопок.В тот момент, когда пользователь нажимает Yes, событие запускается, и вы можете добавлять все, что вам нравится, в DOM.

6 голосов
/ 11 июля 2011
if($('#test2').is(':checked')) {
    $(this).append('stuff');
} 
4 голосов
/ 11 июля 2011
$("input").bind('click', function(e){
   if ($(this).val() == 'Yes') {
        $("body").append('whatever');
   }
});
3 голосов
/ 11 июля 2011

Попробуйте это:

if ( jQuery('#postageyes').is(':checked') ){ ... }
0 голосов
/ 25 февраля 2018

Это будет слушать измененное событие.Я пробовал ответы от других, но они не работали для меня, и, наконец, этот работал.

$('input:radio[name="postage"]').change(function(){
    if($(this).is(":checked")){
        alert("lksdahflk");
    }
});
0 голосов
/ 25 августа 2017
jQuery('input[name="inputName"]:checked').val()
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...