在AJAX中没有调用onreadystatechange函数 - PHP

时间:2014-04-20 06:48:19

标签: php ajax

这是我的代码。在这个onreadystate函数没有被调用。如果以下代码中存在任何问题,请更正我

<!doctype html>
<?php 
include 'db_connect.php';    
session_start();
if(!isset($_SESSION['myusername']))
    header("location:main_login.php");
    ?>

<html>
<head>

<script>
function show(){
    document.getElementById("cheque").value="";
}
function hide(){
    document.getElementById("cheque").value="Cash";
}
function showUser(str)
{
    if (str=="")
    {
        document.getElementById("txtHint").innerHTML="";
        return;
    } 
    if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else
    {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange=function()
    {
        if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
            document.getElementById("txtHint").innerHTML=xmlhttp.readyState;
        }
    }
    xmlhttp.open("GET","ajax_edit_payment.php?q="+str,true);
    xmlhttp.send();
}

</script>
</head>
<body style="text-align: center">
<form name="add_payment" method="post" action="add_payment.php">
<label for="select"><span style="text-align: center">Select Client:</span></label>
  <span style="text-align: center">
  <select name="client_name" id="select" onChange="showUser(this.value)";>
   <option value="">Select:</option>
   <?php 
$sql = mysql_query("SELECT name FROM client");
while ($row = mysql_fetch_array($sql)){
echo "<option value=\"".$row['name']."\">".$row['name']."</option>";
}
?>
</select>
<div id="txtHint"></div><br>
</html>

此代码在某些网页中提供了完美的输出,并且在某些网页中没有给出任何响应。这段代码可能有什么问题

1 个答案:

答案 0 :(得分:0)

你说,它有时提供完美的输出,有时不提供:当使用ajax时,浏览器可能会缓存所请求页面的结果(在本例中为ajax_edit_payment.php?r=client

如果您有一次错误,导致空页面调用将始终返回空结果,除非浏览器缓存无效。当使用ajax调用时,最好附加一个(基于时间戳的)参数,以便有一个易于实现的,跨浏览器兼容的解决方案来强制调用目标脚本而不是使用缓存结果:

xmlhttp.open("GET","ajax_edit_payment.php?q="+str+"&r="+(new Date()).getTime(),true);

这将每秒更改参数“r”。

ps:它可能不是您的问题的解决方案,但“有时工作,有时不”表示缓存问题。