「Bootstrap4入門」ラジオボタンを使用するサンプル

2020年12月29日

書式
class="btn-group btn-group-toggle" data-toggle="buttons"

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1" autocomplete="off" checked>ラジオボタンAA
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2" autocomplete="off">ラジオボタンBB
</label>
</div>
<div class="btn-group btn-group-toggle" data-toggle="buttons"> <label class="btn btn-primary active"> <input type="radio" name="options" id="option1" autocomplete="off" checked>ラジオボタンAA </label> <label class="btn btn-primary"> <input type="radio" name="options" id="option2" autocomplete="off">ラジオボタンBB </label> </div>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
  <label class="btn btn-primary active">
    <input type="radio" name="options" id="option1" autocomplete="off" checked>ラジオボタンAA
  </label>
  <label class="btn btn-primary">
    <input type="radio" name="options" id="option2" autocomplete="off">ラジオボタンBB
  </label>
</div>

 

Bootstrap4

Posted by arkgame