html – 从firefox打开硬盘上的直接文件(file:)

html – 从firefox打开硬盘上的直接文件(file:),第1张

概述我有一个为自己创建的小型php系统.该系统包含一些.doc和.docx文件.我希望能够直接从浏览器打开它们而不是下载它们. 我创建了一个链接:     < a href =“file:/// c:/mysite/myfile.docx”> myfile< / a> 但是FireFox没有打开链接.虽然href =“http://localhost/myfile.docx”工作正常 – 它让我下载文 我有一个为自己创建的小型PHP系统.该系统包含一些.doc和.docx文件.我希望能够直接从浏览器打开它们而不是下载它们.

我创建了一个链接:
< a href =“file:/// c:/mysite/myfile.docx”> myfile< / a>
但是firefox没有打开链接.虽然href =“http://localhost/myfile.docx”工作正常 – 它让我下载文件.

任何想法我怎么能这样做?
也许在firfox选项/安全设置中改变一些东西?
如果你在这里,有没有机会在ie8中做到这一点?

谢谢.

解决方法 虽然我仍然认为这是一个编程问题,但在这里回答:
https://superuser.com/questions/103026/open-a-direct-file-on-the-hard-drive-from-firefox-file

firefox和ie8都支持File URI scheme.

Here are some examples valID for
windows systems,referring to the same
file c:\windows\clock.avi

file://localhost/c|/windows/clock.avi
file:///c|/windows/clock.avi
file://localhost/c:/windows/clock.avi
file:///c:/windows/clock.avi


而最后一个是最明显的
人类可读,第一个是
最完整和正确的.

显然(来自同一个网址):

Mozilla browsers refuse to follow file URLs on a page that it has fetched with the http protocol.

但:

Mozilla browsers can be configured to overrIDe this security restriction as detailed in Mozillazine’s “07002”.

总结

以上是内存溢出为你收集整理的html – 从firefox打开硬盘上的直接文件(file:///)全部内容,希望文章能够帮你解决html – 从firefox打开硬盘上的直接文件(file:///)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144436.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存