简单的滚动新闻脚本

看到网上很多教程把滚动新闻写得太复杂了,就把自己写的拿上来给大家看看,
  1. "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. "http://www.w3.org/1999/xhtml">
  3. "Content-Type" content="text/html; charset=gb2312" />
  4. 滚动新闻
  5.     "newsitem">
  6.         
    "http://www.xmucmd.cn">这
  7.         
    "http://www.xmucmd.cn">这里
  8.         
    "http://www.xmucmd.cn">点这里
  9.     
  •     "text/javascript">
  •         var t=setInterval(myfunc,3000)
  •         function myfunc()
  •         { 
  •             document.getElementById("newsitem").appendChild(document.getElementById("newsitem").firstChild);
  •         }
  •         document.getElementById("newsitem").οnmοuseοver=function(){clearInterval(t)}
  •         document.getElementById("newsitem").οnmοuseοut=function(){t=setInterval(myfunc,3000)}
  •     
  • 这里主要用到的是appendChild,firstChild,把开始的子节点添加到末尾,就这么简单,

    你可能感兴趣的:(javascript)