如何让错误消息淡出?在 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' %>
The error i want to show
flash[:error] = "Invalid username/password combination."
I've tried
$(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);
});
with no success.. I have included the javascript file
<%= javascript_include_tag 'jquery-1.3.2' %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有办法获取错误消息。
仅输出原始文本。
将其包裹在容器中。
那么你可以使用 jQuery 淡出容器。
You don't have a way to get the error message.
just outputs raw text.
wraps it in a container.
then you can just use jQuery to fade the container out.