含有CKEditor的表单如何提交
作者:
如何提交含有CKEditor的表单,其实很简单的在提交事件中加入这一句即可解决问题
在提交事件中加入这一句
for ( instance in CKEDITOR.instances )
CKEDITOR.instances[instance].updateElement();
复制代码 代码如下:
for ( instance in CKEDITOR.instances )
CKEDITOR.instances[instance].updateElement();