我使用iframe加载表单。有我的i帧代码:
<iframe
id='iframe'
seamless
wmode="transparent"
height='1px'
src="http://test.com/iframe/iframeform"
frameborder="0"
scrolling="no"
id="iframe"
style='width:100%;height:900px;z-index:111'>
</iframe>
此iframe隐藏了一个下拉菜单。
我为我的Dropdown提供了一个完整的z-index
,但它没有帮助。
iframe隐藏了我的Dropdown。
答案 0 :(得分:0)
试试这个
<iframe id='iframe'
seamless
wmode="transparent"
height='1px'
src="http://test.com/iframe/iframeform"
frameborder="0"
scrolling="no"
id="iframe"
style="position: absolute; width: 500px; height: 100%; top: 0; bottom: 0; z-index: 1000; border: 0;"></iframe>