尝试使用 bootstrap 3 alert-error 将消息淡入到 div 并隐藏类,但它不起作用。同样的事情是使用引导程序 2.3.2 是否有任何其他引导程序 3 的方法。
html:
<div id="success" class="alert alert-success hide"></div><br>
<button type="submit" id="click" >Click</button>
JavaScript:
$("#click").click(function() {
$("#success").html('Hello World!').fadeIn();
});
Bootstrap3 小提琴:http: //jsfiddle.net/MLpyH/
Bootstrap2.3.2 小提琴:http: //jsfiddle.net/e4SAK/