pdf链接无法在iframe

时间:2016-09-23 05:25:15

标签: html jsp iframe

我有一个jsp,iframe定义如下

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
<iframe src="http://def.abc.com/service/abcrequester?id=111&name=empDetails" width="100%" height="100%" scrolling="yes"></iframe>

上面的I帧将加载一个包含pdf链接的页面,如

PDF1 pdf2 .... .... 如果我们点击任何链接,它应该在同一窗口中打开该pdf。但它显示空白页面。但是如果我们右键单击并在新窗口中打开,则会显示pdf。

在firefox和IE 11中测试过。两个地方的行为相同。如果我们将浏览器模式更改为&#34;企业模式&#34;然后pdf将显示在同一个窗口中。

有人可以帮助我。

1 个答案:

答案 0 :(得分:0)

html中的简单方法只是将您的pdf链接到iframe中......例如

<iframe src="http://example.com/example.pdf" width="800px" height="600px" ></iframe>

关闭iframe标记必须重要。