在 JS 中的表单提交按钮上挂钩同步事件处理程序
我正在用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除
evt.preventDefault()
行。并删除该函数的最后一行。remove the
evt.preventDefault()
line. And delete the last line of the function.