如何让错误消息淡出?在 RubyOnRails 3 中

发布于 2024-11-19 19:46:34 字数 666 浏览 1 评论 0原文

我想显示的错误

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み零 2024-11-26 19:46:34

您没有办法获取错误消息。

flash[:error] = "Invalid username/password combination."

仅输出原始文本。

 flash[:error] = "<div class='error'>Invalid username/password
 combination.</div>"

将其包裹在容器中。

那么你可以使用 jQuery 淡出容器。

$(".error").fadeOut(2000); 

You don't have a way to get the error message.

flash[:error] = "Invalid username/password combination."

just outputs raw text.

 flash[:error] = "<div class='error'>Invalid username/password
 combination.</div>"

wraps it in a container.

then you can just use jQuery to fade the container out.

$(".error").fadeOut(2000); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文