我正在使用Twitter Bootstrap的模态进行弹出式登录和注册。所以我想这样做,当有人输入错误的输入时,它不应该重定向到另一个页面,而是显示这个sign_in模式有错误。
所以我有弹出登录的代码:
<a class="btn" data-toggle="modal" href="#login"">Login</a>
<div class="modal hide" id="login">
<%= render :template => "devise/sessions/new" %>
</div>
有人可以建议我怎么做吗?
答案 0 :(得分: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.
}