我有这个返回 ajax 请求的 javascript 代码
function showUser(str)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("lister").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","popup.php?qq="+str,true);
xmlhttp.send();
}
我试图执行一个无法完成的 jquery,除非 ajax 请求返回,但它不工作
$('#scrollbar2').tinyscrollbar();
那么我应该如何在 ajax 加载后执行最后一个 jquery 呢?