これらはブートストラップで作ることができる無効なボタンの2つのタイプがあります。:
Exmapleがある
1.Disabled UIは、なく、ボタン自体が(試す[disabled
クラスを使用します]スニペットのボタンをクリック)
2.Button disabled |ブートストラップはデフォルトで無効なエフェクトをここに適用します。 [または、属性とdisabled
クラスの両方を使用します]。
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<button type="submit" class="btn btn-primary disabled" onclick="alert('not actaully disabled');">My disabled button</button>
<button type="submit" class="btn btn-primary" disabled onclick="alert('not actaully disabled');">My disabled button</button>
ここで問題は何ですか? 'disabled'クラスがクラスリストの外にあるのはなぜですか? –
デフォルトのdisabled-hover-backgroundを上書きするCSS定義があるかもしれませんか? – sk904861
@GurtejSinghは属性であり、クラス名ではありません –