想看图片,看这里
因为我CSDN没法上传图片啊
想看效果,看这里
不是广告啊用JavaScript直接写也行,用jQuery也行,ASP.NET的AJAX也行,到底怎么弄啊

解决方案 »

  1.   

    处理连接的onmouseover事件,在事件里面添加显示层的代码。
      

  2.   

    定义a标签的title属性就可以了。<a href="#" title="点我">点我</a>
      

  3.   

    处理连接的onmouseover事件,这个事件可以处理.
      

  4.   

    处理连接的onmouseover事件,在事件里面添加显示层的代码。
      

  5.   

    JQuery+Cssonmouseover搜索层的显示隐藏
      

  6.   

    这个需要你有详细的页面,然后再写一个层用来显示这些数据,把这个层的显示方法用JQ写在链接的onmouseover事件中
      

  7.   

    http://www.jzxue.com/Html/daima/2007/4/8042308969.html
      

  8.   

    一个javascript效果啊      可能直接把那个网页上的代码给拿过来用
      

  9.   

    <asp:LinkButton ToolTip="提示信息"></asp:LinkButton>
      

  10.   

    我哪做错了吗,什么效果都没有
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
        <style type="text/css">
            #blockCity{ position:absolute;font-size:9pt;  background-color:#FFFFCC; padding:5px; border:1px solid #F5C66B;line-height:160%; width:300px; display:none;}
            #blockCity a
            {
                color:#000000;
                font-size:9pt;
                text-decoration:none;
            }
            #blockCity a:hover
            {
                font-size:10pt;
                border-bottom:dashed 1px #000000; 
            }
            #blockCity table
            {
            border:1px dotted #F5C66B;
            }
            #blockCity table td
            {
               width:40px;
               text-align:center;
            }
        </style> 
        <script type="text/javascript">
            function selStation(locationid) {
             var Obj = document.getElementById("blockCity");
             document.getElementById("blockCity").innerHTML = "";
             for (var i=0;i < onecount; i++){
                 if (subcat[i][1] == locationid)
                 {
                         document.getElementById("blockCity").innerHTML += subcat[i][0]+"<br />";
                         document.getElementById("blockCity").style.left = event.x;
                         document.getElementById("blockCity").style.top = event.y + document.documentElement.scrollTop - 40;
                         document.getElementById("blockCity").style.display = "block";
                 }      
             }
             
         }
     
         function cshow(){
             document.getElementById("blockCity").style.display="block";
         }
         function chide(){
             document.getElementById("blockCity").style.display="none";
         }
         </script>
          <script type=text/javascript>
    var onecount;
    onecount=0;
    subcat = new Array();
    subcat[0]=new Array('你要显示的内容','类似ID,通过这个变量来进行查找');
    onecount=1;
    </script></head>
    <body>
    <div>
    <a href="#" onmouseover="selStation('blockCity');" onmouseout="chide();" >查看我隐藏的DIV</a>
    <div id="abc">
    </div>
    <div id="blockCity">
    abcdddddddddddddddddd
    efghhhhhhhhhhhhhhhhhhh
    </div>
    </div>
    </body>
    </html>