敢问谁知道UEditor插件配置window.UEDITOR
发布网友
发布时间:2022-05-07 01:28
我来回答
共1个回答
热心网友
时间:2023-10-10 22:39
1、在editor_config.js文件中
1)注释掉下面的代码:应该在第11行
var tmp = window.location.pathname,
URL= tmp.substr(0,tmp.lastIndexOf("\/")+1).replace("_examples/","");
2)如果你重新定义了URL变量,也要注释掉
3)取消第10行的注释
var URL = window.UEDITOR_HOME_URL || '../';
4)【可选】第10行代码里面的 '../' 可配置成大部分页面调用UEditor时的路径
2、在要需要外部配置url的页面,修改 window.UEDITOR_HOME_URL 的值,并写在editor_config.js前面,如下:
<script type="text/javascript">
window.UEDITOR_HOME_URL="./ueditor/";
</script>
<script type="text/javascript" src="ueditor/editor_config.js"></script>
<script type="text/javascript" src="ueditor/editor_all.js"></script>
<link href="ueditor/themes/default/ueditor.css" rel="stylesheet" />