<div id="viewId" style="width: auto; overflow: auto;width:100%;" >
      <object id="pluginId" type="application/x-screenviewerplugin"  style="width:100%; position:     ​    ​            absolute; z-index: -1;">
            <param name="onload" value="pluginLoaded" />
            <param name="wmode" value="transparent"/>------>这个属性没用
       </object>
​ </div>
要显示在object之上的div:一个提示框
<div  class=“ui-alt-mesg”></div>
提示框原来效果:提示框被插件绘制的图层给遮了,
jsobject插件web

解决方案 »

  1.   

    解决方案:iframe
    <div class="ui-div-iframe" style="display:none; background-color:transparent; width:195px; height:102px; position: absolute; bottom:1px; right:10px; z-index: 999999;">
    <iframe id="frameId" style="background-color:transparent; position:absolute; visibility:inherit; right:0px; width:195px; height:102px; z-index:-1;"></iframe>
    </div>
    效果
      

  2.   

    js设置iframe:document.getElementById('frameId').style.top = X +'px';
      

  3.   

    使iframe的位置和提示框位置一致,它两重合在一起就能显示了
      

  4.   

    把 <div  class=“ui-alt-mesg”></div>  这个 也变成绝对定位,然后把 z-index 变成9999999
      

  5.   

    右边一大截被遮了,<div  class=“ui-alt-mesg”></div> z-index:9999999999   九个g 什么都没用
      

  6.   

    什么设置z-index, <param name="wmode" value="transparent"/>加这玩意,都没用的
      

  7.   

    你的div里面也放一个object  或者iframe