いくつかのボタンがあります。ユーザーがいずれかのボタンをクリックしたときに、ボタンがクリックされたような印象をユーザーに与えたいと思います。
これはコードです:
<table>
<thead>
<tr>
<th><button class="btn btn-danger" >Today</button></th>
<th><button class="btn btn-danger" >Tomorrow</button></th>
<th><button class="btn btn-danger" >DayAfterTomorrow</button></th>
</tr>
</thead>
</table>
そして、これは私が単一のボタンを持っているときに機能します:
<button class="btn" data-toggle="button">Today</button>
ユーザーが明日をクリックしても、data-toggle属性は今日のボタンのままです。代わりに、別のボタンがクリックされたときにdata-toggle属性を無効にします。