有什么办法可以在导航器中预览.msg文件吗?

时间:2019-01-09 15:46:32

标签: html html5 preview

我的服务器中的 .msg 文件与其他文件( .docx .mp3 .jpg strong> ... etc),可以通过某种方式在导航器中预览 .msg 文件?类似于Google预览器中的预览Office文档。

示例:

<iframe src="http://docs.google.com/gview?url=http://www.snee.com/xml/xslt/sample.doc&embedded=true" style="width:500px; height:500px;" frameborder="0"></iframe>

我想要类似

<iframe src="http://urlexample.com/emailexample.msg" style="width:500px; height:500px;" frameborder="0"></iframe>

谢谢。

This page可以显示这种文件,我想做类似的事情。

1 个答案:

答案 0 :(得分:0)

object 元素可以表示外部资源,根据资源的类型,该外部资源将被视为图像,嵌套浏览上下文或将被视为外部资源。由插件处理。

中的 data 属性(如果存在)指定资源的地址。如果存在,该属性必须是一个有效的非空URL,该URL可能用空格包围。

中的 type 属性(如果存在)指定资源的类型。如果存在,则该属性必须是有效的mime类型。

就您而言, 例如

<object data="http://urlexample.com/emailexample.msg" type="application/vnd.ms-outlook" width="500" height="500">
       <embed src="http://urlexample.com/emailexample.msg" type="application/vnd.ms-outlook" />
</object>