js禁止表单重复提交
程序员文章站
2022-11-26 14:19:13
本文实例为大家分享了js防止表单重复提交实现代码,供大家参考,具体内容如下
...
本文实例为大家分享了js防止表单重复提交实现代码,供大家参考,具体内容如下
<doctype html> <html> <body bgcolor="#ffffff"> <form name='formsubmitf' id ="the" method="post" action="xxx.php"> <input type='hidden' name='mypretime' value='0'> <input type="button" value="写好了" name="button1" class="4round" onclick='formsubmit()'> </form> <script language='javascript'> function formsubmit() { today = new date(); var nowhour = today.gethours(); var nowminute = today.getminutes(); var nowsecond = today.getseconds(); var mysec = (nowhour*3600)+(nowminute*60)+nowsecond; if((mysec-document.formsubmitf.mypretime.value)>600){ //600只是一个时间值,就是5分钟内禁止重复提交,值随便设 document.formsubmitf.mypretime.value=mysec; } else{ alert(' 按一次就够了,请勿重复提交!请耐心等待!谢谢合作!'); return false; } document.forms.formsubmitf.submit(); } </script> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。