每次脚本运行以加载新内容时,如何使内容淡入 id 为 viewRoul 的 div?
function list_roul(){
var hr = new XMLHttpRequest();
hr.onreadystatechange = function(){
if (hr.readyState==4 && hr.status==200){
document.getElementById("viewRoul").innerHTML = hr.responseText;
}
}
hr.open("GET", "listRoul.php?t=" + Math.random(), true);
hr.send();
}
我尝试使用
$('#viewRoul').html(html).fadeIn()
但它没有用!