Ueditor在thinkphp里提交表单时内容是空的


实例化编辑器后,在textarea里加上编辑器的id后提交表单时值是空的,如果不加id textarea可以正常提交 求大神解答

thinkphp php ueditor

邪骸人形师 9 years, 4 months ago

Ueditor在给texteara加上id初始化之后,原来的texteara是被隐藏起来了,然后ueditor自己加了一个文本域原来编辑数据,你需要在提交之前使用ueditor的js代码将内容同步到你要的那个texteara。比如:


 var ue = UE.getEditor("myEditor");

var content = ue.getContent();

$("#myEditor").val(content);

以上代码只是我的大概意思,你需要结合项目具体参考 Ueditor 的文档。

mumumu answered 9 years, 4 months ago

Your Answer