できません。ブラウザにはWordドキュメントを表示するための組み込みの方法がないため、ユーザーがプラグインを使用してブラウザを開くように設定していない限り(世界の99%は行っていません)、ブラウザはファイルをダウンロードするように促します。 。
したがって、現在、Word文書をレンダリングするために必要なコードを備えたブラウザーはなく、私が知る限り、それらをレンダリングするために現在存在するクライアント側のライブラリもありません。
を介してGoogleドキュメントのビューアを使用できます
<iframe src="http://docs.google.com/gview?url=http://remote.url.tld/path/to/document.doc&embedded=true"></iframe>
解決策は、SOリンクで確認できます。 a>
ダウンロードスクリプトを使用してファイルを開きたい場合は、
を使用できます。<?php
header('Content-type: application/vnd.ms-word');
header('Content-Disposition: attachment; filename="document.doc"');
readfile('path-to-file.docx');
?>
オフィスライブアプリビューアを使用できます。インターネット接続が必要です://view.officeapps.live.com/op/embed.aspx?src=your_url_here
このURLをiframeに入れてください
<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>.</iframe>
コンテンツのみを表示したい場合は、WordファイルをPDFファイルタイプに変換できます。 クラウド変換 を使用できます ファイルをある形式から別の形式に変換します。現在、クラウド変換は最大128の異なるファイル形式をサポートしています。
別の