如何使用javascript重复提交表单?

发布于 2024-10-19 11:50:56 字数 35 浏览 0 评论 0原文

如何使用 JavaScript 每 5 秒提交一个表单?

How can I submit a form every 5 seconds using javascript?

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

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

发布评论

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

评论(3

慕烟庭风 2024-10-26 11:50:56
setTimeout("$('#form').submit()",5000);

没有 jQuery...

setTimeout("document.forms['yourform'].submit();",5000);
setTimeout("$('#form').submit()",5000);

without jQuery...

setTimeout("document.forms['yourform'].submit();",5000);
感情洁癖 2024-10-26 11:50:56

不知道为什么你想这样做,但你可以使用 setTimeout()< /code>docssetInterval( )docs 方法。

请记住,当您提交表单时,您将其提交到一个网址,然后您将转到该网址(除非您使用 ajax)。如果您的目标页面与源页面相同,则页面将重新加载,以便您的脚本从头开始..

以下代码将在执行后 5 秒提交表单
在重新加载的页面中,它会再次执行,因此它会有效地每 5 秒提交一次

setTimeout(function(){
              document.getElementById('formID').submit();
            }, 5000);

Not sure why you would want to do that, but you can use setTimeout()docs or setInterval()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(function(){
              document.getElementById('formID').submit();
            }, 5000);
廻憶裏菂餘溫 2024-10-26 11:50:56

setTimeout 只会触发一次,setInterval 每 x 毫秒触发一次

setTimeout will only fire once, setInterval will fire every x milliseconds

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