我尝试在不刷新 [AJAX ...] 的情况下重新加载页面,但似乎没有工作:/
function refresh() {
link = document.location;
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementsByTagName('table').innerHTML=xmlHttp.responseText;
}
}
xmlhttp.open("GET",link,true);
xmlhttp.send();
}
有谁知道怎么了?