Jquery ui和Internet Explorer PDF Viewer问题

时间:2011-08-22 21:48:42

标签: jquery html css internet-explorer jquery-ui

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

 <object width="100%" height="90%">
    <embed src="../../Content/PDF/StockReport.pdf#zoom=80" width="100%" height="100%">
 </object>

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

1 个答案:

答案 0 :(得分:5)

您是否尝试过使用Google's PDF viewer中建议的this post

<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>