最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Opening a local pdf file in iframe with javascript - Stack Overflow

programmeradmin1浏览0评论

I am using the below code to open a pdf file but its not working-

<iframe src="file:///C:\Users\Downloads\0895custbill08132015.pdf" style="height: 638px;" frameborder="0"></iframe>

For a google doc the below code is working fine, I am not sure what is required to open a locally saved doc.

<iframe src="://webshire-aioopsss/pdfs/sample_contract.pdf&embedded=true" style="height:638px;" frameborder="0"></iframe>

I am using the below code to open a pdf file but its not working-

<iframe src="file:///C:\Users\Downloads\0895custbill08132015.pdf" style="height: 638px;" frameborder="0"></iframe>

For a google doc the below code is working fine, I am not sure what is required to open a locally saved doc.

<iframe src="http://docs.google./gview?url=http://webshire-aioopsss./pdfs/sample_contract.pdf&embedded=true" style="height:638px;" frameborder="0"></iframe>
Share Improve this question edited Aug 20, 2015 at 16:33 Teemu 23.5k7 gold badges59 silver badges111 bronze badges asked Aug 20, 2015 at 16:33 Saurabh DwivediSaurabh Dwivedi 391 gold badge2 silver badges3 bronze badges 1
  • missed the code- 1. iframe src="file:///C:\Users\sd\Downloads\0895custbill08132015.pdf&embedded=true" style="height: 638px;" frameborder="0" 2. iframe src="docs.google./gview?url=http://aaux-playground./pdfs/…" style="height:638px;" frameborder="0" – Saurabh Dwivedi Commented Aug 20, 2015 at 16:34
Add a ment  | 

3 Answers 3

Reset to default 2

Most browsers won't let you open a locally stored file from a website for security reasons. Typically I will host the file on an IIS server and then retrieve it from there (which is what you're doing when you're retrieving it from googledoc).

You are using backslashes in your src. Please change them to slashes

<iframe src="file:///C:/Users/Downloads/0895custbill08132015.pdf" style="height: 638px;" frameborder="0"></iframe>

You can use var pdf = $('\<\object type="application/pdf">'); pdf.attr('data', "you pdf scr"); append it in your iframe..

发布评论

评论列表(0)

  1. 暂无评论