ewebeditor 飞鱼修改版 内容为空时tomcat关闭解决方法:
查找ewebeditor以下目录文件:
include/editor.js打开后转至第 436 行,或查找如下字符串:
if ((html.toLowerCase()=="<p> </p>")||(html.toLowerCase()=="<p></p>")){
将以下内容:if ((html.toLowerCase()=="<p> </p>")||(html.toLowerCase()=="<p></p>")){ html = "";}
替换为:if (html=="") { html = " ";}
注意:第二行赋值语句 html = " "; 中的引号内至少要有一个空格。