<a href="" onclick="x.style.display='';this.innerTetxt='<';return false">></a>
<div id=x style="display:none">xxx</div>

解决方案 »

  1.   

    <marquee id="starwu" height="18" direction="left" scrollamount="2" onMouseover="stop()" onMouseout="start()">
    aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk eee mmm nnn uuu iiii pppp ttt </marquee>
    <SCRIPT LANGUAGE="JavaScript">
    function document.onkeydown() {
    if(event.keyCode==188) {
    document.all("starwu").direction="left";
    }
    if(event.keyCode==190) {
    document.all("starwu").direction="right";
    }
    }
    </SCRIPT>
      

  2.   

    <marquee direction=left onmouseover=this.stop() onmouseout="this.start()">eee mmm nnn uuu iiii <a href="" onclick="a(this);return false">></a></marquee>
    <div id=x style="display:none">xxx</div>
    <script>
    function a(u)
    {
    if(x.style.display=='none')
    {
    x.style.display='';u.innerText='<'
    }
    else
    {x.style.display='none';u.innerText='>'
    }
    }
    </script>
      

  3.   

    <span onMouseDown="t = setInterval('with(simMarquee)if (offsetLeft<0)style.left = offsetLeft+1; else clearInterval(t)',10)" onmouseup="clearInterval(t)" style="cursor:hand">&lt;</span>
    <span style="height:20;width:100;overflow:hidden;"> <span style="position:relative;width:600" id=simMarquee>aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk eee mmm nnn uuu iiii pppp ttt </span></span>
    <span onMouseDown="t = setInterval('with(simMarquee)if (offsetLeft>-500)style.left = offsetLeft-1; else clearInterval(t)',10)" onmouseup="clearInterval(t)" style="cursor:hand">&gt;</span>