确保已发送POST请求

时间:2015-07-22 08:36:55

标签: javascript html

我在使用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();
}

您能帮我确认邮寄申请是否已成功发送,然后才关闭窗口?

0 个答案:

没有答案