我用
<marquee behavior="scroll" direction="up" scrolldelay="350" onmousemove="scrollarea.stop()" onmouseout="scrollarea.start()" width="180" height="144" style="WIDTH: 180px; HEIGHT: 144px">........</marquee>
来控制DATALIST里面内容的滚动
绑定后的内容要求自动向上滚动,鼠标移上后就停,移走就继续滚动
现在鼠标移上后不停
请问这个问题如何解决

解决方案 »

  1.   

    <marquee id="scrollarea" behavior="scroll" direction="up" scrolldelay="350" onmousemove="scrollarea.stop()" onmouseout="scrollarea.start()" width="180" height="144" style="WIDTH: 180px; HEIGHT: 144px">........</marquee>
      

  2.   

    <marquee id="scrollarea" behavior="scroll" direction="up" scrolldelay="350" onmouseover="scrollarea.stop()" onmouseout="scrollarea.start()" width="180" height="144" style="WIDTH: 180px; HEIGHT: 144px">........</marquee>