0

我正在开发一个网站,管理员将在其中发布 pdf 文件,并且该文件将加载到 html 页面中。我使用 iframe 这样做,它在 localhost 上运行良好,但是当我上传到远程服务器时,它强制我下载 pdf 文件。这是我的代码

<iframe src="<?php echo base_url();?>uploads/2.pdf" width="950px" height="800px" >

是页面的 链接。请建议我解决这个问题。

4

1 回答 1

0

您可以使用

<iframe scrolling="yes" frameborder="0" src="<?php echo base_url('uploads/2.pdf');?>" width="950px" height="800px" >
于 2013-06-22T04:45:48.380 回答