你用什么呢?谢谢探讨啊!

解决方案 »

  1.   

    C1WebMenu,也有这个情况,不过排版让它不会被dropdownList这些东西挡住,总是在最顶上。
      

  2.   

    不被遮挡的菜单要用popup做,参考:
    http://community.csdn.net/Expert/TopicView.asp?id=3868003
      

  3.   

    因为你的菜单和页面在同一层上,控件在上一层所以会被遮挡,用<DIV>试一下
      

  4.   

    <select>
      <option>This usually appears on top in IE</option>
    </select>
    <iframe src="about:blank" scrolling="no" frameborder="0"
      style=" position:absolute;width:100px;height:120px;top:0px;left:0px;border:none;display:block;z-index:0"></iframe>
    <div style=" position:absolute;width:100px;height:120px;top:0px;left:0px;border:solid 1px black;z-index:0">
      This appear in front of the select in IE
    </div>