<myMagicTag> <b>Hello</b> World </myMagicTag>
我想要< b>标签显示为只是文本,而不是作为一个大胆的指令.我宁愿不必编写代码来转换每个“<”到“&”. 我知道< textarea>会做,但它有其他不利的副作用,如添加滚动条.
myMagicTag是否存在?
编辑:这样做的jquery或JavaScript函数也可以.不能做服务器端,不幸的是.
解决方法 您可以使用script
element(由我粗体): The
script
element allows authors to include dynamic script and data blocks in their documents.
例:
<script type="text/plain">This content has the media type plain/text,so characters reserved in HTML have no special meaning here: <div> ← this will be displayed.</script>
(请注意,脚本元素的允许内容为@L_301_1@,例如can’t将< / script>作为文本内容(将关闭脚本元素))
通常,脚本元素在浏览器的CSS中默认显示:none,因此您需要在CSS中覆盖,例如:
script[type="text/plain"] {display:block;}总结
以上是内存溢出为你收集整理的使其他标签呈现为纯文本的HTML标签全部内容,希望文章能够帮你解决使其他标签呈现为纯文本的HTML标签所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)