新版ckeditor取消了内容自动同步到textarea的功能,

提交前需手动同步,若不手动同步提交时textarea中的内容为空

手动同步代码

for ( instance in CKEDITOR.instances )
{
 
CKEDITOR.instances[instance].updateElement();
}