3

我有一个包含文档的离线html 文件,我必须输出文本文件的内容(在我的情况下是源代码)。有没有办法仅使用客户端功能(HTML 本身或 JS)将此文件的内容包含到 html 页面?

索引.html

<html>
    <head>
    <style>
    p.source_code
    {
        font-family:"Courier New"
    }
    </style>
    </head>
    <body>
        <p>
            Some content
        </p>
        <p class="source_code">
            <!-- place for output content of file main.cpp -->
        </p>
    </body>
</html>

主文件

#include <stdio.h>
    int main()
    {
        printf("Hello World");
    }

我希望我在浏览器中的页面看起来像

    Some content

    #include <stdio.h>
    int main()
    {
        printf("Hello World");
    }
4

1 回答 1

4

iframe如果 HTML 文件和源文件都是本地文件,则可以简单地使用:

<html>
  <head>
    <title>Example</title>
  </head>
  <body>
    <iframe src="the-file.txt">
    </iframe>
  </body>
</html>
于 2012-08-21T08:02:51.863 回答