本文介绍了如何使页面自动平滑地刷新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使页面自动,顺畅地刷新...就像Facebook一样吗? :-\
How to make page refresh automaticaly and smoothly...jst like the way facebook does it?? :-\
推荐答案
<html>
<head>
<script type="text/JavaScript">
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
</script>
</head>
<body onload="JavaScript:timedRefresh(5000);">
</body>
</html>
这篇关于如何使页面自动平滑地刷新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!