解决Div覆盖Dropdownlist的问题

这次项目当中用到可以拽动的DIV,但是当div越过 Dropdownlist的时候却被它给挡住了,为了解决这个问题,我到网上找下面这样的解决方法:
 在要拽动的DIV中加入:
<iframe id="aaaa" style="position: absolute; z-index: -1; expression(this.nextSibling.offsetWidth);
                    height: expression(this.nextSibling.offsetHeight); top: expression(this.nextSibling.offsetTop);
                    left: expression(this.nextSibling.offsetLeft);" frameborder="1"></iframe>
其中:this.nextSibling中的nextSibling表示当前元素的下个元素。
原文地址:https://www.cnblogs.com/shineqiujuan/p/1281368.html