标签剥离允许一些 html 标签 - Facebook-ish
我正在做一些类似在本地应用程序中发布功能的事情,它确实工作正常,但缺乏验证,更不用说我所做的验证是一团糟。我正在使用 jQuery oEmbed。
我想要的是按原样打印非法的 html 标签并激活/执行(我不知道正确的术语)我允许的 html 标签。
有什么建议吗?
I am doing something like posting function in a local app it's working fine really but it lacks with validation and not to mention the validation I made was a mess. I'm using jQuery oEmbed.
What I wanted is to print the illegal html tag(s) as is and activate/perform(I don't know the right term) the html tags I have allowed.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我想出的最好的解决方案。
首先替换掉所有的<和>然后将 html 代码替换回允许的标签。
结果:
请问有没有办法一次性全部更换。但它有效。
This is the best solution i came up.
First replaced all the < and > for html code then replaced back the allowed tags.
Result:
I wonder if there's any solution for replacing all at once. But it works.