私のページには2つの異なるボタングループがあるとしましょう。複数のブートストラップbuttongroupsを1つのページで使用する
<div class="btn-group fruits" role="group" aria-label="fruits" id="fruits">
<button type="button" name="fruits" class="btn btn-default">apple</button>
<button type="button" name="fruits" class="btn btn-default">cherry</button>
<button type="button" name="fruits" class="btn btn-default">melon</button>
</div>
<div class="btn-group vegetables" role="group" aria-label="vegetables" id="vegetables">
<button type="button" name="vegetables" class="btn btn-default">cucumber</button>
<button type="button" name="vegetables" class="btn btn-default">aubergine</button>
<button type="button" name="vegetables" class="btn btn-default">pepper</button>
</div>
ボタンをクリックするたびに、他のグループの選択されたボタンが選択解除されました。
私は別の "ids"、 "名前"、 "クラス"をそれぞれのbuttongroupとボタンに追加しました。しかし、残念ながら成功しません。お互いに影響を与えずに、ページ上に複数のbuttongroupを持つことはできますか?
公式のブートストラップページのすべての例も同様です。 o buttongroupをクリックすると、他のbuttongroupの選択が解除されます。 Bootstrap Button Group
ありがとうございました。
あなたが説明した動作が期待されているものです。 2つのボタンを同時に「クリック」することを達成しようとしていますか? – nozzleman
@nozzlemanはい。私はちょうど1つのbuttongoupから1つのボタンをクリックし、もう1つのボタンは別のbuttongroupからクリックしたいと思う。 – oneNiceFriend
これらは無線フィールドではないため、これらのボタンのオン/オフ状態はありません。あなたが「選択」しているものは、実際には意図したとおりに動作している「フォーカス」状態です。ステートフルにするには、必要な[plugin](http://getbootstrap.com/javascript/#buttons)とともに ''要素を使用する必要があります。 –