function handleServerResponse() {
if (xmlhttp.readyState == 4) {
if(xmlhttp.status == 200) {
document.getElementById("message").innerHTML=xmlhttp.responseText;
}
else {
alert("Error during AJAX call. Please try again");
}
}
所以上面是 ajax 代码的一部分,它返回一个 HTML 并将其加载到 div 名称消息中。我想做的就是在此之后 5 秒后隐藏 div 消息。我搜索了很多,但没有具体的答案。有人可以帮帮我吗。