UEditor取消自动保存功能

项目中使用该插件时,自动保存的提醒功能会给用户以误解,故把该功能与消息弹框提示都去掉了

所以最后的解决方法是:

1、ueditor.config.js,enableAutoSave的注释去掉并设置成false,saveInterval的注释也去掉设置成0;

2、修改ueditor.all.js,在'contentchange': function () {函数的第一行添加代码:

if (!me.getOpt('enableAutoSave')) {return;}

参考:https://1017401036.iteye.com/blog/2302967

原文地址:https://www.cnblogs.com/akunz/p/11001910.html