绕过 html 标签

发布于 2024-12-11 12:59:03 字数 113 浏览 0 评论 0原文

我有一个简单的问题。如何禁用特定区域的 html 标签?我尝试了 ,但它仍然适用于 和其他。我希望你明白我的意思。

I have simple question. How to disable html tags on specific area? I tried <pre.>, but it still works with <i.> and others. I hope you know what I mean.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

等待我真够勒 2024-12-18 12:59:03

据我所知,唯一可靠的方法是将 <> 字符更改为其各自的 HTML 实体代码:

<a href="somewhere.html">A link</a>

以上内容将呈现在页面为:

<a href="somewhere.html">A link</a>

As far as I'm aware the only reliable way to do this is to change the < and > characters to their respective HTML entity codes:

<a href="somewhere.html">A link</a>

The above would render on the page as:

<a href="somewhere.html">A link</a>
一身骄傲 2024-12-18 12:59:03

您可以使用

<code>
...
</code>

You can use

<code>
...
</code>
吾性傲以野 2024-12-18 12:59:03

尝试这样,

<!--pre>
code here
</pre-->

您可以将任何内容变成标签之间的注释同样

,如果您想禁用特定标签的效果,您也可以这样做

从那个

<p>
    This must be <strong>strong</strong>
</p>

到那个

<p>
    This must be <!--strong-->strong<!--/strong-->
</p>

try that

<!--pre>
code here
</pre-->

In that way you turn anything into comment between the tags

Also in that same way if you like to disable the effect of a specific tag you can do that too

From that

<p>
    This must be <strong>strong</strong>
</p>

To that

<p>
    This must be <!--strong-->strong<!--/strong-->
</p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文