禁用除 之外的所有标签
我想编码 (htmlentities
) 或禁用除 标记之外的所有标记。
我怎样才能实现这个目标?
I want to encode (htmlentities
) or disable all tags except for <a>
tags.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 HTML 实体后,使用正则表达式将链接转换回来:
如果您希望删除其他标签,请使用:
After using HTML entities, convert the links back using a RegExp:
If you want other tags to be removed, use: