是javascript的?
对这个不太了解

解决方案 »

  1.   

    用块实现
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>无标题文档</title>
    </head>
    <script language="javascript">
    function hide(s){
    var div=document.getElementById(s);
    div.style.visibility="hidden";
    }
    </script>
    <body>
    <div id="eee" style="visibility:visible">
    <a href="#" onClick="hide('eee');">ddddd
    </a>
    </div>
    </body>
    </html>
      

  2.   

    fredfei(飞飞) (
    ------------------------
    十分感谢!