CKeditor ajax 与 codeigniter
我已经在 codeingiter 项目的 Html 视图中的文本区域上成功安装了 CKeditor 插件。
我使用“ajax”表单发布的问题,似乎 CKeditor textarea 的内容没有与其他字段一起发送。
我尝试添加此解决方案,
var VariableName = escape(FCKeditorAPI.GetInstance('FCKEditorFieldName').GetXHTML());
但“firebug”向我显示一条错误消息“FCKeditorAPI 未定义”,然后重定向到白色页面的页面包含 json 输出消息。
你能帮我用ajax发送CKeditor textarea的内容吗?
I had successfully installed CKeditor plugin on a textarea in Html view in a codeingiter project.
the problem that I use "ajax" form post and it seems that the content of CKeditor textarea does not sent with other fields.
I tried this solution to add
var VariableName = escape(FCKeditorAPI.GetInstance('FCKEditorFieldName').GetXHTML());
but "firebug" show me an error message that "FCKeditorAPI is not defined" then the page redirected to a white page contains json output message.
can you help me to send content of CKeditor textarea with ajax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用CK编辑器还是FCK编辑器?
对于第一个(非 jquery 版本),您只需要 。 getData() 函数来获取字段的数据内容:
如果您使用的是 jQUery 适配器,我认为这样做就足够了:
Are you using CK editor or FCK editor?
With the first (non-jquery version) you just need the .getData() function to get the data content of the field:
If you're using the jQUery Adapter I think it's enough doing: