Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个永远不会在线的个人网站。
我正在使用带有 CKEDITOR Textarea 的表单。
我希望 PHP 在我的 MYSQL 数据库的 Textarea 中发布由 CKEDITOR 生成的 HTML 源代码。
如何强制 PHP 代码在我的数据库中发布 HTML 语言?
我的代码: http ://alex69.dyndns.info/meridien/MyCode.doc
updateElement()如果那是您想要做的,请使用该方法更新文本区域。但我认为这是由 ckeditor 实例在 php 提交表单时自动处理的。您的 ckeditor 内容将位于您在发布表单时绑定 ckeditor 的 textarea 本身的 id 中。
updateElement()
CKEDITOR.instances.editor1.updateElement(); alert( document.getElementById( 'editor1' ).value ); // The current editor data.
CKEditor 文档