0

我已將頁面從BS2轉換爲BS3,並且無法將警報顯示在診斷日誌上。我縮小了一個簡單的例子。我必須錯過一些基本和明顯的東西!Bootstrap警報不會顯示

<div class="alert alert-danger hide" id="form-error"> 
    <button type="button" class="close" data-dismiss="alert" aria-hidden="true"> 
     &times; 
    </button> 
</div> 


<a href="#" class="btn btn-primary btn-large" type="button" onclick="mysavefunction()" id="trev">Press me</a> 

保存看起來像這樣

$('#form-error').html("<p>error message").show(); 

http://jsfiddle.net/GrimRob/v5sqcrLr/21/

回答

1

我猜show()不工作,因爲類hide犯規此功能得到去除,所以我寧願攻皮類:

$('#trev').click(function() { 
    $('#form-error').html("<p>error message</p>").toggleClass('hide'); 
}); 

此結果顯示您的表單錯誤。