<MARQUEE DIRECTION=up BEHAVIOR=SCROLL>
<a href="">news one</a>
<BR>
<a href="">news two</a>
</MARQUEE>

解决方案 »

  1.   

    我不是要这个 我要的是title滚动 就象许多网页在状态栏滚动一样
      

  2.   

    将对应的window.status改为document.title
      

  3.   

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title></title>
    </head>
    <body>
    <input onmouseover=showTitle() onmouseout=hideTitle()>
    <span id=titleSpan style="display:none;z-index:1;position:absolute;background-color:#FFFFCC">abcdefghijklmn</span>
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    var i
    function doscroll()
    {
    var t = titleSpan.innerText ;
    titleSpan.innerText  = t.substr(1)+t.substr(0,1)
    }
    function showTitle()
    {
    titleSpan.style.display=""
    titleSpan.style.top = event.y
    titleSpan.style.left = event.x
    i = setInterval("doscroll()",100)
    }
    function hideTitle()
    {
    titleSpan.style.display="none"
    clearInterval(i);
    titleSpan.innerText="abcdefghijklmn"
    }
    //-->
    </SCRIPT>
    </body>
    </html>
      

  4.   

    看看这个
    <html>
    <head>
    <title>scroll title</title>
    </head>
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    var i;
    function doscroll()
    {
    var t =document.title;
    document.title = t.substr(1)+t.substr(0,1);
    //alert(document.title);
    setTimeout("doscroll()",100);
    }doscroll();
    //-->
    </SCRIPT>
    <body>
    </body>
    </html>
      

  5.   

    http://lucky.myrice.com/xml/index.html