实例化编辑器后,在textarea里加上编辑器的id后提交表单时值是空的,如果不加id textarea可以正常提交 求大神解答
thinkphp php ueditor
Ueditor在给texteara加上id初始化之后,原来的texteara是被隐藏起来了,然后ueditor自己加了一个文本域原来编辑数据,你需要在提交之前使用ueditor的js代码将内容同步到你要的那个texteara。比如:
var ue = UE.getEditor("myEditor"); var content = ue.getContent(); $("#myEditor").val(content);
以上代码只是我的大概意思,你需要结合项目具体参考 Ueditor 的文档。
Ueditor
thinkPHP 整合ueditor 出现errorHandler is not defined错误
在考虑一个问题,MVC为什么一定要model一个目录,View一个目录……
如何实现php定时执行任务,且时间是可配置的
将thinkphp的Lib目录打成phar包,替换掉Lib目录,整合时遇到问题
php has encountered a access violation at 0xoooooo
Thinkphp改变分页get,如/p/1.html改成/page/1.html