我正在使用javascript代码
function ajax()
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{if (xmlhttp.readyState==4 && xmlhttp.status==200)
document.getElementById('mydiv').innerHTML=xmlhttp.responseText;
else
document.getElementById('mydiv').innerHTML='Loading';
}
xmlhttp.open("GET",'welcome.html',true);
xmlhttp.send();
}
在页面处理期间的这段代码中,浏览器打印加载。但是现在我正在使用
$('#mydiv').load('welcome.html');
,我不知道如何在 jquery 中处理页面时打印加载