首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

关于ajax的简单有关问题,求解答

2012-09-14 
关于ajax的简单问题,求解答。下面是我的完整代码,为什么点了o,x,t之后都没有反应呢,按道理应该是下面会多出

关于ajax的简单问题,求解答。
下面是我的完整代码,为什么点了o,x,t之后都没有反应呢,按道理应该是下面会多出一些内容的,大家知道为什么吗?

var xmlHttp;
function xmlhttprequest() {

if(window.ActiveXObject){
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}

}

function funphp100(url){
xmlhttprequest();
xmlHttp.open("GET","for.php?id="+url,"true");
xmlHttp.onreadystatechange = byphp;
xmlHttp.send(null);
}

function byphp(){

if(xmlHttp.readyState==1){
document.getElementById('php100').innetHTML = "loading......";
}

if(xmlHttp.readyState==4){
if(xmlHttp.Status==200){
var byphp100 = xmlHttp.responseText;
document.getElementById('php100').innetHTML = byphp100;
}
}
}


for.php


<?php
for($i=1;$i<=6;$i++){
echo $i."$id<br>";
}
?>


index.php

<script type="text/javascript" src="ajax.js"></script>


<a href="#" onclick="funphp100('o')">o<a>
<a href="#" onclick="funphp100('t')">t<a>
<a href="#" onclick="funphp100('x')">x<a>
<br>
<div id="php100"></div>

[解决办法]
是 innerHTML 而不是 innetHTML
[解决办法]
if(xmlHttp.status==200){ //小写s

热点排行