をチェックされているBTN-グループ上のどの項目をチェック:ブートストラップ4ベータ版:ブートストラップ4について
私は3つのラジオボタンとBTN-グループを持っており、そのうちの一つは、事前に選択されたページのロードにあります。私は選択されたボタンに応じていくつかのアクションを実行したいですが、私はそれを得ることができません。ここで
は、これまでの私のコードです:
<div class="btn-group btn-group-sm mb-2" id="container__Direction" role="group" data-toggle="buttons">
<label class="btn btn-group-btn active">
<input type="radio" data-toggle="button" id="input__Direction_Return" checked /> <--> Return
</label>
<label class="btn btn-group-btn">
<input type="radio" data-toggle="button" id="input__Direction_OneWay" /> --> One way
</label>
<label class="btn btn-group-btn">
<input type="radio" data-toggle="button" id="input__Direction_MultiStop" /> ->-> Multi Stop
</label>
</div>
<!-- Hide this Div if "OneWay" is selected -->
<div id="container__Inbound_Date">
<label for="input__Date">Date:</label><br/>
<input type="date" id="input__Date" />
</div>
$('#input__Direction_OneWay').on('click', function() {
if ($(this).is(':checked')) {
$("#container__Inbound_Date").hide();
}
});
はフィドル:https://jsfiddle.net/SchweizerSchoggi/ax85208e/2/
BTN "一方向" が選択された場合BTN-グループ下の事業部が非表示にする必要があります。
まあ、説明魔法のように動作 - あなたの時間を過ごすためのおかげでこれ! – SchweizerSchoggi