http.open("POST", url, true);
//http.setRequestHeader("Content-type", "application/json");
http.onreadystatechange = function() {
if (http.readyState == 4 && http.status == 200) {
document.open();
document.write(http.responseText);
}
};
http.send();
这就是我发布帖子的方式,服务器应该将其转移到另一个地址。但由于某种原因,反应总是被取消。
任何想法?