• ueditor编辑器插件 chrome中图片上传框延时问题


        最近在项目中使用ueditor插件进行文字的在线编辑功能时,发现这个插件的图片上传弹框在chrome浏览器延迟非常的厉害。经过多方搜索,终于解决。现将解决方案记录如下:

            1、修改/Ueditor/dialogs/image/image.js文件的第370行处,将 mimeTypes: 'image/*' 修改为:mimeTypes: 'image/jepg,image/png.image/jpg'。如图:

                     

            2、修改/Ueditor/ueditor.all.js文件的第24431行,将 accept="image/*"  修改为:accept="image/jepg,image/png,image/jpg"。如图:

                    

           如此可解决图片上传框延迟的问题。

        参考博文:http://blog.csdn.net/lhtzbj12/article/details/53673601

  • 相关阅读:
    GCD HDU
    Finding Lines UVALive
    Chinese Mahjong UVA
    DNA Evolution CodeForces
    String Reconstruction (并查集)
    Number Cutting Game HDU
    Paint the Wall ZOJ
    Star sky CodeForces
    Haunted Graveyard ZOJ
    GuGuFishtion HDU
  • 原文地址:https://www.cnblogs.com/wangwust/p/ueditor_chrome.html
Copyright © 2020-2023  润新知