这是一个提交数据并且在本页显示的效果 但是现在有问题 比如我提交10次数据可能有两次提交后并且刷新页面后显示不出来刚才插入的数据 我之前做的另一个页面不是用ajax做的就没有这种情况 100%能显示出来刚才提交的内容 昨天问过这个问题 没有解决 晚上我又改了一些地方 把ajax缓存阻止掉了 但是试了一下还是不行 还是有显示不出来的情况 真的搞不懂这个bug是哪里的原因 大家帮我看看吧
提交页面(ajaxtijiao.php)
<?php$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");$stmt=$pdo->prepare("select id,txt from ajax");$stmt->execute();$res=$stmt->fetchall(PDO::FETCH_ASSOC);foreach($res as $v){ echo $v['txt'];}?><!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> function ajax(url,funsucc){ var oAjax=new XMLHttpRequest(); oAjax.open('GET',url,true); oAjax.send(); oAjax.onreadystatechange=function(){ if(oAjax.readyState==4){ if(oAjax.status==200){ funsucc(oAjax.responseText); } }}} </script> <script type="text/javascript"> window.onload=function(){ var oTxt=document.getElementById('txt1'); var oBtn=document.getElementById('btn1'); oBtn.onclick=function(){ ajax(""ajaxinsert.php?id="+oTxt.value&rand=new Date().getTime(),function(){ location.href="ajaxtijiao.php?t="+new Date().getTime(); }); } } </script></head><body><form action="ajaxinsert.php" method="get"> <input type="text" id="txt1"> <button type="submit" id="btn1">提交</button></form></body></html>
<?php$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");$id=$_GET["id"];$stmt=$pdo->prepare("insert into ajax(txt)values(?)");$stmt->execute(array($id));?>
地址栏上的地址一直都是这个地址 http://localhost/ajaxtijiao.php? 而且一直没有变化
你的表单有
而你的 ajax 程序中并没有阻止 表单提交 这一默认行为
所以表单总是被提交,即使 ajax 有了什么新行为,也会被 提交 动作所掩盖
你的表单有
而你的 ajax 程序中并没有阻止 表单提交 这一默认行为
所以表单总是被提交,即使 ajax 有了什么新行为,也会被 提交 动作所掩盖
你的表单有
而你的 ajax 程序中并没有阻止 表单提交 这一默认行为
所以表单总是被提交,即使 ajax 有了什么新行为,也会被 提交 动作所掩盖
你的表单有
而你的 ajax 程序中并没有阻止 表单提交 这一默认行为
所以表单总是被提交,即使 ajax 有了什么新行为,也会被 提交 动作所掩盖
你的表单有
而你的 ajax 程序中并没有阻止 表单提交 这一默认行为
所以表单总是被提交,即使 ajax 有了什么新行为,也会被 提交 动作所掩盖
1、
2、ajax( "ajaxinsert.php?id="+....
改成这样就可以了。
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> function ajax(url,funsucc){ var oAjax=new XMLHttpRequest(); oAjax.open('GET',url,true); oAjax.send(); oAjax.onreadystatechange=function(){ if(oAjax.readyState==4){ if(oAjax.status==200){ funsucc(oAjax.responseText); } }}} </script> <script type="text/javascript"> window.onload=function(){ var oTxt=document.getElementById('txt1'); var oBtn=document.getElementById('btn1'); oBtn.onclick=function(){ ajax("ajaxinsert.php?id="+oTxt.value&rand=new Date().getTime(),function(){ location.href="ajaxtijiao.php?t="+new Date().getTime(); }); } } </script></head><body><form action="ajaxinsert.php" method="get"> <input type="text" id="txt1"> <button type="button" id="btn1">提交</button></form></body></html>
1、
2、ajax( "ajaxinsert.php?id="+....
嗯
ajax("ajaxinsert.php?id="+oTxt.value + "&rand=" + (new Date()).getTime(), function(){
嗯
ajax("ajaxinsert.php?id="+oTxt.value + "&rand=" + (new Date()).getTime(), function(){
你的表单有
而你的 ajax 程序中并没有阻止 表单提交 这一默认行为
所以表单总是被提交,即使 ajax 有了什么新行为,也会被 提交 动作所掩盖