jqueryラジオボタンがチェックされている場合


149

重複の可能性:
特定のラジオボタンのチェックがオンになっている

現時点でこれらの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>

1
@ダニエルH:あなたの更新について:それはうまくいきます!
シェフ、2011

奇妙なことに、それは私のウェブサイトでは機能していません。少なくとも私はコードが正しいことを知っています。すべての答えに感謝して、コードの何が問題なのかを見つけようとします!
ダニエルH

回答:


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

JS Fiddleデモ

ラップするためには、(私はスニペットだけでなく、JSフィドルのリンクが含まれるように編集されたので)と、さらに、軽度の更新が<input />持つ要素<label>秒-テキストをクリックするために、関連する更新できるよう<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デモ

また、ユーザーがチェックした要素に応じてコンテンツを表示するだけの場合は、明示的な表示/非表示を使用して表示を切り替えるわずかな更新:

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

参照:


3
チェックされているかどうかを確認する必要はありません。それ以外の場合、値はありません。資源の無駄!
シェフ、2011


12

このようなもの:

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

3
jQueryオブジェクトは常に真実です。$(...).length代わりに使用することもできます。
pimvdb 2011

という#postageyes:checked$('#postageyes').is(':checked')
シェフ、2011

@pimvdb jQueryドキュメントにis()よると、ブール値を返します。したがって、呼び出し.length()は壊れています。ドキュメントから:「他のフィルタリングメソッドとは異なり、.is()は新しいjQueryオブジェクトを作成しません。代わりに、jQueryオブジェクトの内容を変更せずにテストできます。」- api.jquery.com/is
アサフ

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

これは、ラジオボタンの変更イベントをリッスンします。ユーザーがをクリックするYesと、イベントが発生し、DOMに好きなものを追加できます。



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

これについてはあまりわかりませんが、$("#postageyes:checked"常にtrueを返すとは限りませんか?機能させる.lengthためにを使用する必要はありませんか?
Phil

「or」とその後のすべてを削除
創世記


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

このコードスニペットは問題を解決する可能性がありますが、説明を含めると、投稿の品質を向上させるのに役立ちます。あなたは将来の読者のための質問に答えていることを覚えておいてください、そしてそれらの人々はあなたのコード提案の理由を知らないかもしれません。
Patrick Hund 2017

とった。次の回答には1つあります。
ベンジャミン

0

これは変更されたイベントをリッスンします。私は他の人からの答えを試しましたが、それらは私にとってうまくいきませんでした、そして最後に、これはうまくいきました。

$('input:radio[name="postage"]').change(function(){
    if($(this).is(":checked")){
        alert("lksdahflk");
    }
});
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.