Jquery ui和Internet Explorer PDF Viewer问题

Ben*_*ing 2 html css jquery internet-explorer jquery-ui

我在页面加载时显示一个jquery对话框.在我的加载页面上,我也碰巧嵌入了这样的pdf:

 <object width="100%" height="90%">
    <embed src="../../Content/PDF/StockReport.pdf#zoom=80" width="100%" height="100%">
 </object>
Run Code Online (Sandbox Code Playgroud)

但是在Internet Explorer 9中,pdf查看器位于我的对话和模态之上.我试图让z-index来解决这个问题,但它无法正常工作.有谁知道如何解决这一问题 ?

Wil*_*Niu 5

您是否尝试使用Google的PDF查看器,如本文所述

<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fyourhost.com%2FContent%2FPDF%2FStockReport.pdf%23zoom%3D80&embedded=true" 
  style="width:100%; height:90%;" frameborder="0">
</iframe>
Run Code Online (Sandbox Code Playgroud)