Uditorエディタがドメインをまたいでアップロードする解決方法


解決方法:
1.ueditor\dialogs\internal.jsでdocument.domain='ルートドメイン名'に加入する。
2.現在のページでもルートドメイン名を指定します。

<script type="text/javascript">
    document.domain = " ";
</script>
このようにchrome、firefoxの下では問題ないですが、ieの下でUEditorを簡単に修正する必要があります。editor.jsの中で見つけられます。
this._setup;
その上に下のコードを入れます。

if (ie) {
    document.getElementById('baidu_editor_' + this.uid).src = "javascript:(function(){document.open();document.domain='"+document.domain+"';document.close();})()";
}
次の検索:
ME.document=doc;
その下に参加します。
m.document.domain='ルートドメイン名'
ここでUEditorのドメインを越えて写真を送る問題を解決しました。皆さんに助けてほしいです。作者:東奎