我再次发布一个我没有满意答案的问题:
我是 AJAX 方法的新手。我想发布一些由 php 页面处理的信息,称之为 page.php
在我的 html 页面中,我输入了以下代码:
<script type="text/javascript" charset="utf-8">
//I have put the function getXMLHttpRequest() on a separate js file
function getXMLHttpRequest() {
var xhr = null;
if (window.XMLHttpRequest || window.ActiveXObject) {
if (window.ActiveXObject) {
try {
xhr = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
} else {
xhr = new XMLHttpRequest();
}
} else {
alert("Votre navigateur ne supporte pas l'objet XMLHTTPRequest...");
return null;
}
return xhr;
}
function request(callback) {
var xhr = getXMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 0)) {
callback(xhr.responseText);
}
};
xhr.open("POST", "page.php", true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send("name=proposition");
}
function postData(Data) {
alert(Data);
}
</script>
<button onclick="request(postData);">...</button>
在page.php中,我有一个方法
function comment(){
//some code processing the posted infos (that works fine)...
//to debug, I have put a
echo('Hello world');
}
更准确地说:page.php 的结构是page.php?page='mypage'&post='post'
。所以首先有一个指向 mypage.php 的方向,然后在 mypage.php 中有一个类的实例化。该__construct
方法采用 post 变量来调用类中的方法,即comment()
.
事实是我没有收到任何“Hello world”,而是一条巨大的警报消息,其中显示了我的所有网页代码。有人有想法吗?
最好的,纽本