我在使用javascript关闭窗口时遇到问题
我有一张表格:
<form role="form" action="/home/manager/create_client" onsubmit="closeSelf(this)" method="post"
id="createClientForm">
...
<button type="submit" class="btn btn-primary">Submit</button>
</form>
有时当我按submit
时,方法closeSelf(this)
的工作时间早于发送请求。
方法closeSelf(this):
function closeSelf(f) {
f.submit();
window.onunload = refreshParent;
function refreshParent() {
window.opener.location.reload();
}
window.close();
}
您能帮我确认邮寄申请是否已成功发送,然后才关闭窗口?