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.
我们有一些 HTML 代码,当用户单击浏览器上的某个链接时,我们希望以原始源格式显示这些代码。我们如何防止链接内容被 HTML 浏览器解释?
我正在尝试使用相同的 HTML 文件来呈现以及以源格式显示。
像这样的东西就足够了
<textarea rows=10 cols=50 readonly="true"> <h1> Hello </h1> <emphasis> World </emphasis> </textarea>
你可以用 JavaScript 试试这个;
语法高亮
希望这可以帮助。