安全“打印”文本区域中的原始 html 代码与 CKeditor 一起使用?
我需要替换哪个字符才能从文本区域中的数据库安全地“打印”原始 HTML 代码,以便我可以使用 CKeditor 对其进行编辑?
或者是否有另一种现有的首选方法将数据导入 CKeditor 文本区域? (例如 AJAX)
Which character do I need to replace to safely 'print' raw HTML code from a database in a textarea, so I can edit this with CKeditor?
Or is there another existing preferred method of getting data into a CKeditor textarea? (e.g. AJAX)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CKEditor 将使用文本区域的初始内容,因此您需要做的就是像平常一样对其进行转义,例如:
另请参阅 CKEDITOR.replace。
如果要在加载 CKEditor 后设置文本区域的内容,请使用 setData API 函数:
在这两种情况下,CKEditor 都会加载原始 HTML 并执行使其工作所需的任何预处理。
CKEditor will use the initial contents of the textarea, so all you need to do is escape it as you normally would, e.g.:
See also CKEDITOR.replace.
If you want to set the contents of the textarea after CKEditor is loaded, use the setData API function:
In both cases, CKEditor will load the raw HTML and do whatever preprocessing is necessary to make it work.
此外,您现在可以只获取从 ajax 或 jquery 返回数据的变量并将其附加到 .setData(data)。
Additionally you can now just take the variable that is returning the data from ajax or jquery and append it to the .setData(data).