0

我正在使用 Twitter Bootstrap 中的模式进行弹出登录和注册。所以我想做,当有人输入错误的输入时,它不应该重定向到另一个页面,而是显示这个带有错误的登录模式。

所以我有这个用于弹出登录的代码:

<a class="btn" data-toggle="modal" href="#login"">Login</a>

<div class="modal hide" id="login">   
 <%= render :template => "devise/sessions/new" %>
</div>

有人可以建议我怎么做吗?

4

1 回答 1

0

当登录凭据与模式 JavaScript 方法错误时,您应该激活模式:$("div.modal").modal(options);其中 options 是这样的 JSON 对象


    {
        backdrop: true,      // Includes a modal-backdrop element. Alternatively, specify static for a backdrop which doesn't close the modal on click.
        keyboard: true,      // Closes the modal when escape key is pressed
        show:     true       // Shows the modal when initialized.
    }
于 2012-06-05T19:28:15.053 回答