ThinkPHP整合百度Ueditor,thinkphpueditor_PHP教程
程序员文章站
2022-06-06 23:09:33
...
ThinkPHP整合百度Ueditor,thinkphpueditor
ThinkPHP整合百度Ueditor,基于黄永成老师的视频说明的
申明:最好大家都能写绝对路径的都写好绝对路径比如:window.UEDITOR_HOME_URL
他在教程里面已经说了的,我就不再次说了啊,就一笔带过,好了不废话!
在调用编辑器的时候首先先初始化一些值:
1 window.UEDITOR_HOME_URL = "/Public/ueditor/"; //UEDITOR_HOME_URL、config、all这三个顺序不能改变 3 window.onload=function(){ 4 window.UEDITOR_CONFIG.initialFrameHeight=300;//编辑器的高度 5 window.UEDITOR_CONFIG.imageUrl="{:U('admin/Category/checkPic')}"; //图片上传提交地址 6 window.UEDITOR_CONFIG.imagePath=' /Uploads/thumb/';//编辑器调用图片的地址 7 UE.getEditor('contents');//里面的contents是我的textarea的id值 8 9 } 10 11
推荐阅读
-
百度编辑器ueditor(v1.3.6)net环境中详细配置教程附bug解决方法
-
ThinkPHP整合百度Ueditor图文教程
-
vue集成百度UEditor富文本编辑器使用教程
-
ThinkPHP框架下整合支付宝支付功能图文教程
-
百度UEditor编辑器使用教程与使用方法(图文)
-
ThinkPHP3.0 运用百度ueditor的正确配置方法。
-
thinkphp整合kindeditor编辑器和ueditor编辑器
-
thinkPHP下ueditor的使用方法详解,_PHP教程
-
ThinkPHP使用Ueditor的方法详解,thinkphpueditor_PHP教程
-
ThinkPHP整合百度Ueditor,thinkphpueditor_PHP教程