在 JS 中的表单提交按钮上挂钩同步事件处理程序

发布于 2024-08-29 08:12:49 字数 630 浏览 3 评论 0原文

我正在用 Javascript 开发一个安全项目(老实说我没有使用过),并且我在使用 EventListener 时遇到了一些问题。

我的代码看起来像这样:

function prevclick(evt) {
evt.preventDefault();
document.loginform.submitbtn.removeEventListener('click',prevclick,false);
var req = new XMLHttpRequest();
req.open("GET","testlog.php?submission=complete",false);
req.send();
document.loginform.submitbtn.click(); //tried this and loginform.submit()
}

document.loginform.submitbtn.addEventListener('click',prevclick,false);

但问题是,提交按钮不会在第一次单击时提交表单(但是,它会在第一次单击时发送 http 请求),而在第二次单击提交按钮时,它可以正常工作。

我认为同步存在问题,但我确实需要在将用户转发到下一页之前处理请求。

任何关于这方面的想法都会很棒。

I'm working on a security project in Javascript (something I honestly have not used), and I'm having some trouble with EventListeners.

My code looks something like this:

function prevclick(evt) {
evt.preventDefault();
document.loginform.submitbtn.removeEventListener('click',prevclick,false);
var req = new XMLHttpRequest();
req.open("GET","testlog.php?submission=complete",false);
req.send();
document.loginform.submitbtn.click(); //tried this and loginform.submit()
}

document.loginform.submitbtn.addEventListener('click',prevclick,false);

But the problem is, the submit button doesn't submit the form on the first click (it does, however, send the http request on the first click), and on the second click of the submit button, it works as normal.

I think there is a problem with the synchronization, but I do need to have the request processed before forwarding the user to the next page.

Any ideas on this would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2024-09-05 08:12:49

删除 evt.preventDefault() 行。并删除该函数的最后一行。

remove the evt.preventDefault() line. And delete the last line of the function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文