我有横幅代码,不像图像和超链接。我需要的只是javascript代码,每30秒刷新一次这段代码而不刷新页面的其余部分。
此横幅代码将显示在聊天室中。我真的很感激任何帮助。 横幅代码:
<script language='JavaScript'
type='text/javascript'
src='xxxxxx/banner.php?uname=yyyy&type=2&rows=1' >
</script>
答案 0 :(得分:2)
您应该做的第一件事是将代码包装在一个函数中。尝试重新调用整个脚本文件导入比调用函数要困难得多。
一旦所有内容都包含在函数中,您就可以使用setTimeout来调用该方法。我会做这样的事情:
function drawBanner() {
// Do stuff to draw the banner.
// Make sure you handle the case that the
// banner is already present in the DOM!
}
function onDrawBannerTimer() {
// Set this function to fire again after 30 seconds.
// Note that this will fire it roughly every 30 seconds real-time.
// You can move this statement to after the drawBanner() call
// in order to make it 30 seconds between the end of one
// invocation and the start of the next.
setTimeout(onDrawBannerTimer, 30 * 1000);
drawBanner();
}
// Trigger the first invocation when the script is loaded.
onDrawBannerTimer();
答案 1 :(得分:0)
你想要给那个脚本标签一个ID(比如id='dynScript'
),然后让另一个脚本块执行以下操作:[注意:我正在使用jQuery]
<script>
$(document).ready(function(){
setTimeout ( $('#dynScript').attr('src','xxxxxx/banner.php?uname=yyyy&type=2&rows=1'), 3000);
});
</script>