首页  >  文章  >  php教程  >  UEditor 编辑器跨域上传解决方法

UEditor 编辑器跨域上传解决方法

高洛峰
高洛峰原创
2016-12-27 09:20:181297浏览

解决的方法:

1.在 ueditor\dialogs\internal.js 加入 document.domain = '根域名';

2.在当前页面同样指定根域名:

<script type="text/javascript">
    document.domain = "根域名";
</script>

这样在 chrome、firefox 下没有问题,但在 ie 下还需要简单修改下 UEditor,在 editor.js 中找到:

this._setup( container.firstChild.contentWindow.document );

在它上边加入下边的代码:

if (ie) {
    document.getElementById(&#39;baidu_editor_&#39; + this.uid).src = "javascript:(function(){document.open();document.domain=&#39;"+document.domain+"&#39;;document.close();})()";
}

接下来找到:

me.document = doc;

在它下边加入:

me.document.domain='根域名';

到这里就解决了 UEditor 跨域传图片的问题,希望对大家有所帮助。


更多UEditor 编辑器跨域上传解决方法相关文章请关注PHP中文网!


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn