使用CKEDITOR3,我需要输入:
<p>dummy</p>: This tag is really good at stuff....
请注意,括号应显示,就像记录标记一样。
当我输入texteditor区域中的括号时,它们将被保存在db中作为&amp; lt;等,并检索回textarea的源作为&amp; lt;但是后来CKEDITOR htmlWriter可能会踢出来并将&amp; lt放到一个括号中,这就是编辑器中显示的内容。
我可以在CKEditor中阻止此行为吗?如果我要输入真实标签,我会使用CKEDITOR-source视图。现在我真的想打印标签,从而保持&amp; lt;
注意:
If I enter &lt;test&gt; and submits the code,
the editor first changes to <test> and then submitted once more,
to <test>.
答案 0 :(得分:2)
以防其他人绊倒:
简单地传递数据
(php): $ckHtml = htmlspecialchars($theText)
在将身体数据呈现给CK编辑区之前。