标记的就是没有什么,调试工具有个preview能显示出我想显示的内容,但是网页上没有显示出来啊,
新手求助,怎么让其显示在网页上啊,
在url的php中加了
header('content-type:text/html;charset=utf-8');
没效果
$('showallnodes').onclick = function(){
xmlhttp.open('GET','node/allnodes.php',true);
xmlhttp.onreadystatechange = showclass;
xmlhttp.send(null);
}
function showclass(){
if(xmlhttp.readystate == 4){
if(xmlhttp.status == 200){
$('showmenu').innerHTML = xmlhttp.responseText;
}
}
}
求助,谢谢啊
回复讨论(解决方案)
我找到原因了,是大小写的原因,readyState的s是大写的,解决了