< script type="text/javascript" >
var xmlHttp;
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
}
function startRequest() {
createXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("GET", "http://www.mokuai.net/****.php?id="+id, true);
xmlHttp.send(null);
}
function handleStateChange() {
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
document.getElementById("results").innerHTML = xmlHttp.responseText;
}
}
}
startRequest();
< /script >
<div id="results">ͨ¹ý½Å±¾µÄ¼ÓÔØ£¬ÄÚÈݾÍÕâÁËÕâ¸öºÐ×Ó¡£</div>
¹Ø±Õ´°¿Ú À´Ô´:ÍøÂç 16 2007-05-09