[求助]在页面上做一个超连接广告图(可点击关闭),浏览时始终保持在当前窗口顶端
在页面上做一个超连接广告图(可点击关闭),浏览时始终保持在当前窗口顶端就像新浪体育首页两测那广告图一样http://sports.sina.com.cn/
<script language="JAVAscript">
function move()
{
document.getElementById("ad").style.top = (document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop) + 100 + 'px';
setTimeout("move();",80)
}
function load()
{
document.write('<div id="ad" style="position: absolute; top:100px; left:18px; background-color:#dddddd;"></div>');
move();
}
load();
</script>