Home > Backend Development > PHP Tutorial > 关于表单重复提交的有关问题

关于表单重复提交的有关问题

WBOY
Release: 2016-06-13 12:08:33
Original
820 people have browsed it

关于表单重复提交的问题
有一个注册表单 采用的是ajax提交 怎样防止用户重复提交表单,就是在用户提交一次以后  因为其它一些原因还没返回结果前 用户再次提交表单 造成重复数据  请教各位有什么好的办法可以解决
------解决思路----------------------

引用:
看看下面的代码:
<br />namespace{flags:{}}<br />namespace.flags.submit=true;<br />document.getElementById('btn').addEventListener('click',formSub);<br />function formSub(){<br />    if(namespace.flags.submit){<br />        namespace.flags.submit = false;<br />        $.post('addr',{params:'},function(data){<br />            if(data == 'OK'){<br />                alert(OK');<br />                 namespace.flags.submit = true;<br />            }<br />        });<br />    }<br />}<br />
Copy after login

主要想法就是设置一个标志变量,这个标志变量控制能否提交,程序写的不全,自己完善
------解决思路----------------------
显示一个旋转的菊花吧

然后设置一个发送开关
<br /><script type="text/javascript"><br /><br /><br />window.sending = false;<br /><br />if(!window.sending){<br />	window.sending =true;<br />	//在这里开时转菊花<br />	$.post('http://bbs.csdn.net/',{name:'shiki'},function(result){<br />		console.log(result);<br />	},'json').always(function(){<br />		window.sending = false;<br />		//在这里隐藏菊花<br />	});<br />}<br /><br /><br /></script><br />
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template