我正在使用以下脚本进行 ajax 调用:
window.onload = function() {
if (!session) {
layoutType = document.documentElement.clientWidth;
var xmlhttp;
if (window.XMLHttpRequest)
xmlhttp=new XMLHttpRequest();
}
else
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
window.location.reload();
}
}
xmlhttp.open("POST","core/session.php?bW=" + bW,true);
xmlhttp.send();
}
}
我想在 pahe 加载时插入加载图像和一些文本。我该怎么做?
我想插入以下图片链接和文字:
<img src="cdn/images/ajax-loader.gif" />
<h3>Please wait while we load</h3>
请帮忙。