1 1. 打开编辑器根目录下面的ueditor.all.js文件,找到:
 2     table.setAttribute("data-sort", cmd == "enablesort" ? "sortEnabled" : "sortDisabled")
 3      在这句代码下面加一行:
 4 table.setAttribute("style", "border-collapse:collapse;");
 5 
 6 2.在ueditor.all.js文件中找到:
 7     return '<table><tbody>' + html.join('') + '</tbody></table>'
 8      改为:
 9     return '<table style="border-collapse:collapse;"><tbody>' + html.join('') + '</tbody></table>'
10 
11 3.修改配置文件ueditor.config.js 找到:
12     whitList
13     下一行添加:
14     iframe: ['frameborder','border','marginwidth','marginheight','width','height','src','id'],//动态地图

 

posted on 2018-11-24 14:50  Cc_Pz  阅读(385)  评论(0编辑  收藏  举报