如何在提交时重新加载页面

问题描述 投票:0回答:3

我有一个包含表单的 Bootstrap Modal。该模式还包含一个提交和取消按钮。取消按钮工作正常,并且正在成功关闭模态框。现在,根据我对模态框提交按钮单击的要求,通过将用户输入传递到 Web 服务,表单已成功提交,但模态框并未关闭。另外,我只需要在“提交”按钮单击事件上重新加载页面。这是我的 HTML..

<div class="modal fade" id="StudentModal" tabindex="-1" role="dialog" aria-labelledby="StudentModalLabel" aria-hidden="true" data-backdrop="static">
<div class="modal-dialog">
  <div class="modal-content">
     <form action="~/GetStudent" class="form-horizontal" role="form" method="post" id="frmStudent">
        <div class="modal-footer">
           <div class="pull-right">
              <button type="submit" class="btn btn-success"><i class="glyphicon glyphicon-ok"></i> Save</button>
              <button type="button" class="btn btn-danger" data-dismiss="modal"><i class="glyphicon glyphicon-remove"></i> Close</button>
           </div>
        </div>
     </form>
  </div>

我尝试了以下方法来关闭模态..

$('#frmStudent').submit(function() {
$('#StudentModal').modal('hide');
return false;
});

根据我的要求,我需要关闭“提交事件模式”并从 Web 服务返回后重新加载页面。我怎样才能用 jQuery 做到这一点?

注意:我不应该在这里使用 Ajax Call。我只需要通过表单操作提交表单。

javascript jquery html forms twitter-bootstrap
3个回答
17
投票

此 HTML 不起作用:

<form onsubmit="window.location.reload();">

但是这个 HTML 可以完成这项工作:

<form onsubmit="setTimeout(function(){window.location.reload();},10);">

因此浏览器有足够的时间提交表单,然后重新加载页面;-)


5
投票

提交表单后,您可以通过 javascript 进行此调用:

window.location.reload();

0
投票

如果您希望在提交表单时重新加载页面,请使用

onsubmit
事件处理程序:

document.getElementById("frmStudent").onsubmit = function(){
    location.reload(true);
}

此代码应重新加载页面,提交表单,然后关闭模式。

© www.soinside.com 2019 - 2024. All rights reserved.