会动 挺好玩 的
<div id=demo style=overflow:hidden;height:380px;>
<div id=demo1 >
1111111111111111<br>
222222222222<br>
3333333333
..........//<bean:write> 写内容
<div id=demo2 ></div>
<script>
var t=demo.scrollTop
marqueesHeight=2000; //内容区高度
stopscroll=false; //这个变量控制是否停止滚动
demo2.innerText=demo1.innerText //可以循环显示
with(demo1){
noWrap=true; //这句表内容区不自动换行
style.width=0; //于是我们可以将它的宽度设为0,因为它会被撑大
style.height=marqueesHeight;
onmouseover=new Function("stopscroll=true"); //鼠标经过,停止滚动
onmouseout=new Function("stopscroll=false"); //鼠标离开,开始滚动
}
function qswhMarquee(){
if(stopscroll==true) return;
if(demo2.offsetTop-demo.scrollTop<=0){
document.forms[0].action="staffDisplay.do?flag=flase";
document.forms[0].submit();
demo.scrollTop-=demo1.offsetHeight
}
else
demo.scrollTop++;
}
setInterval(qswhMarquee,1)//数越大 速度越慢
</script>
为什么 当我 的 内容 用 <bean:write> 写进去的时候 第2边的 数据 全走样了啊...