我正在寻找一种在iframe中嵌入Office Online编辑器的方法。我需要https://portal.office.com/作为iframe的src,但这似乎不起作用。
然后我想我也许可以在其中嵌入一个空文档,并在使用时将其另存为新文件。然而,这似乎是不可能的,因为嵌入的文档是以只读的形式呈现的。
有人知道如何在iframe中嵌入Office Online编辑器吗
我已经在jsfiddle.net/n7e3wv6v/33中使用过这个小提琴
发布于 2018-07-09 16:46:24
是的,我认为这可以用以下代码来完成,src文档必须是公共的,并且是office (docx,xls ...)已知的扩展:
<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=http://remote.url.tld/path/to/document.doc' width='1366px' height='623px' frameborder='0'>
This is an embedded
<a target='_blank' href='http://office.com'>Microsoft Office</a>
document, powered by
<a target='_blank' href='http://office.com/webapps'>Office Online</a>.
https://stackoverflow.com/questions/51188729
复制相似问题