try...<a href="..." onmousemove="return false">...</a>

解决方案 »

  1.   

    不行啊,超链接有多个并且已经写好,我想写一段代码让所有地址不显示。
    《a href="abc.htm"》fffff《/a》是写好了的,不能修改!
      

  2.   

    http://expert.csdn.net/Expert/FAQ/FAQ_Index.asp?id=65265
      

  3.   

    <body onmouseover="if(event.srcElement.nodeName=='A')window.status='imafool';">
    </body>
      

  4.   

    <body onload=setInterval("window.status='wssgwps'",5)>
      

  5.   

    http://expert.csdn.net/Expert/FAQ/FAQ_Index.asp?id=65265最后那2个使用css解决的办法不错,就是还有点闪烁的问题
      

  6.   

    <a onclick="JavaScript:window.location.href='dddd.htm'">链接</a>或者:<div onclick="JavaScript:window.location.href='dddd.htm'">链接</div>
      

  7.   

    function Url()
    {
    window.status="你的眼睛在1毫秒之内看不清地址"
    time_id=setTimeout("Url()",1);
    }
    Url();
    </script>
      

  8.   

    用了上面的方法是不显示url了,但一查看源文件不就什么都出出来了吗,有没有什么好办法查看源文件也看不到呢?