迷你富文本编辑器

发布于 2024-08-14 10:24:10 字数 469 浏览 6 评论 0原文

好的,所以我制作了一个迷你富文本编辑器,如果我想插入链接,我会像这样插入文本区域中的 html: go to google,它工作得很好,但是当我重新打开该文本进行编辑时,我没有得到完整的 html 标签...我得到的只是 go to google without < a href=http://google.com>。 我不得不提一下,文本存储在 xml 文档中。 有人可以告诉我问题出在哪里以及我应该如何获取完整的 go to google 吗?谢谢

稍后编辑: 在我的 xml 文件中,特殊字符被转义(例如: < 变为 \&gt;

ok, so i made a mini Rich text editor and if i want to insert a link i insert into the textarea the html like this: <a href=http://google.com>go to google</a>, it works just fine but when i reopen that text for editing i don't get the complete html tag...all i get is go to google without <a href=http://google.com> and </a>.
i have to mention that the text is stored in a xml document.
Can someone tell me where the problem is and how should i do it to get the full <a href=http://google.com>go to google</a> ? thanks

LATER EDIT:
in my xml file special characters are escaped(ex: < becomes \>)

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

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

发布评论

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

评论(1

狼亦尘 2024-08-21 10:24:11

在 XML 中嵌入 HTML 时,请尝试将特殊字符(小于、大于和与符号)转义为

  • <<
  • >
  • &

When embedding HTML in XML, try escaping the special characters (less than, greater than, and ampersand) as

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