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>

main.cpp

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

ブラウザで自分のページを次のように表示したい

    Some content

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

1 に答える 1

4

iframeHTML ファイルとソース ファイルの両方がローカルにある場合は、単純に を使用できます。

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