iframe中的pdf文件将在ie8中自动​​下载

时间:2011-11-30 22:56:15

标签: pdf iframe internet-explorer-8

我想在iframe中显示几个pdf文件并编写了这样的php代码:

for ($i=0;$i<count($posts);$i++)
{
   echo '<div class="doc-prev"><iframe src="'.$posts[$i].'" width="640" height="400">   </iframe></div>';
}

在Chrome,FF甚至IE9中一切都很好,但在IE8中打开页面后,如果我真的想要下载这些文件,则会出现一个信息工具栏。有谁知道它是如何修复的?

1 个答案:

答案 0 :(得分:0)

您可以尝试添加标头为Content-Disposition的标头inline;吗?