Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将 .txt 文件插入网页并让服务器/浏览器将其解释为 html 而不仅仅是显示代码?
我尝试过如下使用 iframe,但这只是显示代码而不是解释代码。我知道这样做的明显方法是将文件另存为 .htm 并插入该文件;问题是,我的服务器不允许我上传 .htm 文件。
<iframe src="url.txt" type="text" width="100%" style="height:1000px"></iframe>
不可以。为了被浏览器解释,它必须与Content-Type: text/htmlHTTP herader一起发送(文件扩展名本身无关,但经常被服务器用来猜测Content-Type)。所以如果你的服务器不允许你上传 HTML 文件,你就不能这样做。
Content-Type: text/html
Content-Type