6
我想要的錯誤顯示如何讓我的錯誤消息淡出?在RubyOnRails 3
flash[:error] = "Invalid username/password combination."
我已經試過
$(document).ready(function() {// When the Dom is ready
$('.error').hide();//Hide the div
$('.alert').hide();
$('.notice').hide();
$('.success').hide();
$('.info').hide();
$(".error").fadeOut(2000); //Add a fade out effect that will last for 2000 millisecond
$(".alert").fadeOut(2000);
$(".notice").fadeOut(2000);
$(".success").fadeOut(2000);
$(".info").fadeOut(2000);
});
,但沒有成功。我已經包括JavaScript文件
<%= javascript_include_tag 'jquery-1.3.2' %>
動態加載錯誤嗎? – Eric
有jQuery 1.6.2,但這並不重要,打開控制檯,你應該看看是否有任何錯誤,這應該,本身,工作。檢查你的HTML也(如果它有正確的類值)。 –