使用 html 的“框架”显示文件,但仅在“框架”中显示 PDF 和文本文件,下载 doc 和 x ls 文件而不是显示。
以下是示例代码:
<html>
  <head>
    <meta name="generator"
    content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" />
    <title>Open Word in Iframe</title>
  </head>
  <body>
    <div align="center">
      <table border="1" cellspacing="1" cellpadding="1" width="100%">
        <tr>
          <td width="25%" align="left" valign="top">
            <a href="doc1.pdf" target="awindow">Doc 1</a>
            <br />
            <a href="doc2.doc" target="awindow">Doc 2</a>
            <br />
            <a href="doc3.text" target="awindow">Doc 3</a>
          </td>
          <td width="75%" align="center" valign="top">
            <iframe name="awindow" frameborder="2" width="580" height="440" src="doc.txt"></iframe>
          </td>
        </tr>
      </table>
    </div>
  </body>
</html>