如何使用javascript重复提交表单?
如何使用 JavaScript 每 5 秒提交一个表单?
How can I submit a form every 5 seconds using javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 JavaScript 每 5 秒提交一个表单?
How can I submit a form every 5 seconds using javascript?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
没有 jQuery...
without jQuery...
不知道为什么你想这样做,但你可以使用
setTimeout()< /code>docs
或
setInterval( )
docs 方法。请记住,当您提交表单时,您将其提交到一个网址,然后您将转到该网址(除非您使用 ajax)。如果您的目标页面与源页面相同,则页面将重新加载,以便您的脚本从头开始..
以下代码将在执行后 5 秒提交表单
在重新加载的页面中,它会再次执行,因此它会有效地每 5 秒提交一次
Not sure why you would want to do that, but you can use
setTimeout()
docs orsetInterval()
docs methods.Keep in mind though that when you submit a form you submit it to a url, and you go to that url (unless you use ajax). If your target page is the same as the source page, then the page is reloaded so your script starts from scratch ..
the following code would submit the form 5 seconds after its execution
in a page that reloads it would execute again so it would effectively submit every 5 secs
setTimeout 只会触发一次,setInterval 每 x 毫秒触发一次
setTimeout will only fire once, setInterval will fire every x milliseconds