这并不是用什么控件的问题,应该算是布局,不要太过依赖所谓的控件,只要实现了布局,那么剩下就是绑定数据到页面的问题。布局类似如下的结构
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
a{text-decoration:none; color:#000;}
ul{margin:0;padding:0;list-style:none;}
.nav{width:400px;height:40px;margin:100px auto;}
.nav .sin{float:left;padding:0 10px;height:100%; position:relative; border:solid 1px #ccc;line-height:40px;}
.menu{ position:absolute;top:40px;left:-1px; display:none;}
.menu li{float:left;width:100px; padding-left:20px;background:#999;color:#fff;line-height:30px; vertical-align:top;}
</style>
<script>
window.onload=function()
{
var oNav=document.getElementById('nav');
var aLink=oNav.getElementsByTagName('a');
for(var i=0;i<aLink.length;i++)
{
aLink[i].onmouseover=function()
{
this.parentNode.getElementsByTagName('ul')[0].style.display='block';
}
aLink[i].onmouseout=function()
{
this.parentNode.getElementsByTagName('ul')[0].style.display='none';
}
}
}
</script>
</head><body>
<ul class="nav" id="nav">
<li class="sin">
     <a href="javascript:;">产品列表</a>
        <ul class="menu">
         <li>菜单一</li>
            <li>菜单二</li>
            <li>菜单三</li>
            <li>菜单四</li>
        </ul>
    </li>
</ul>
</body>
</html>

解决方案 »

  1.   

    并不是所以东西能用控件做出来的别种控件的毒太深
    他只是用javascript实现的一个鼠标停留事件上显示一个绝对定位的div框而已
      

  2.   

    如果一定要用控件,用“工具箱”---“导航”---“Menu”控件,然后编辑菜单项,可以实现你所说的
      

  3.   

    一楼的方法不可取,直接用jQuery(父div).hover(function(){},function(){})来实现,这样就可以简单实现了