jquery:simule z-index将div放置在选定对象上(explorer bug)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery:simule z-index将div放置在选定对象上(explorer bug)相关的知识,希望对你有一定的参考价值。

using bgiframe to solve a bug in explorer: you cannot apply z-index to place divs over selects in a form!!!
  1. INSIDE THE HEAD
  2. ......................................................................
  3. <script type="text/javascript" src="http://brandonaaron.net/jquery/plugins/bgiframe/jquery.bgiframe.js"></script>
  4.  
  5. <script type="text/javascript">
  6. $(function() {
  7. $('#box').bgiframe();
  8. });
  9. </script>
  10.  
  11. <style type="text/css" media="screen">
  12. form { position: absolute; top: 0; left: 0; width: 100%; }
  13. select { position: relative; width: 100%; margin: 0 0 2px; z-index: 1; }
  14. .box { position: relative; z-index: 2; float: left; margin: 5px; border: 5px solid #666; padding: 5px; width: 250px; height: 100px; color: #000; background-color: #999; }
  15. </style>
  16.  
  17.  
  18. ......................................................................
  19. <form action="#" method="get" accept-charset="utf-8">
  20. <select name="test"><option>valor 1</option></select>
  21. <select name="test"><option>valor 2</option></select>
  22. <select name="test"><option>valor 3</option></select>
  23. </form>
  24. <div id="box" class="box">contenido del box</div>

以上是关于jquery:simule z-index将div放置在选定对象上(explorer bug)的主要内容,如果未能解决你的问题,请参考以下文章

Flash 电影的 Div Z-Index 问题

如何让带有 z-index 的 div 在悬停时覆盖另一个 div

可拖动 div 的 z-index 顺序

使用elevateZoom在我的div上有z-index问题,必须是2或3

在div+css中如何让两个元素的层级关系改变,z-index,不是很好使……

CSS - 层叠上下文(The stacking context)