0

これは私のコードです:

  var xml=new String("");     
 //function to send data every 5 seconds
        window.setInterval(function() { 
        //code to obtain xml file
            alert(xml);// when I try alert my variable xml contain data
            ajax_post(xml);
            }
        }, 5000); 


  //the function ajax_post


   function ajax_post(xml){
   // Create our XMLHttpRequest object
   var hr = new XMLHttpRequest();
   // Create some variables we need to send to our PHP file
    var url = "my_file.php";
    var vars = "xml="+xml;
    hr.open("POST", url, true);
    // Set content type header information for sending url encoded variables in the request
    hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    // Access the onreadystatechange event for the XMLHttpRequest object
    hr.onreadystatechange = function() {
    if(hr.readyState == 4 && hr.status == 200) {
        var return_data = hr.responseText;
        document.getElementById("status").innerHTML = return_data;
    }
}
hr.send(vars);
document.getElementById("status").innerHTML = "processing...";
}

問題は、データを div に表示しようとすると、変数を空に初期化したかのように空の出力が得られることですが、アラートを使用してデータを表示できます。なんで ?

ありがとうございました。

4

1 に答える 1

2

あるべきではない余分な } があると思います:

window.setInterval(function() { 
        //code to obtain xml file
            alert(xml);// when I try alert my variable xml contain data
            ajax_post(xml);
            }
        , 5000); 
于 2012-09-07T20:00:32.060 に答える