码迷,mamicode.com
首页 > 其他好文 > 详细

Ueditor编辑器 自动过滤Style内联样式问题

时间:2019-07-03 12:09:21      阅读:805      评论:0      收藏:0      [点我收藏+]

标签:input   编辑器   return   rsa   output   int   过滤   UNC   nta   

一、修改ueditor.all.js 文件
  • 1 、修改allowDivTransToP属性为false
UE.plugins[‘defaultfilter‘] = function () {
    var me = this;
    me.setOpt({
        ‘allowDivTransToP‘:false,
        ‘disabledTableInTable‘:true
    });
  • 2、修改过滤规则

将 case style 与script 注释掉

        root.traversal(function (node) {
            if (node.type == ‘element‘) {
                if (!dtd.$cdata[node.tagName] && me.options.autoClearEmptyNode && dtd.$inline[node.tagName] && !dtd.$empty[node.tagName] && (!node.attrs || utils.isEmptyObject(node.attrs))) {
                    if (!node.firstChild()) node.parentNode.removeChild(node);
                    else if (node.tagName == ‘span‘ && (!node.attrs || utils.isEmptyObject(node.attrs))) {
                        node.parentNode.removeChild(node, true)
                    }
                    return;
                }
                switch (node.tagName) {
//                    case ‘style‘:
//                    case ‘script‘:
//                        node.setAttr({
//                            cdata_tag: node.tagName,
//                            cdata_data: (node.innerHTML() || ‘‘),
//                            ‘_ue_custom_node_‘:‘true‘
//                        });
//                        node.tagName = ‘div‘;
//                        node.innerHTML(‘‘);
//                        break;

二、修改ueditor.config.js

以下三项配置全部改为false

    // xss 过滤是否开启,inserthtml等操作
        ,xssFilterRules: false
        //input xss过滤
        ,inputXssFilter: false
        //output xss过滤
        ,outputXssFilter: false

Ueditor编辑器 自动过滤Style内联样式问题

标签:input   编辑器   return   rsa   output   int   过滤   UNC   nta   

原文地址:https://blog.51cto.com/55757353/2416544

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!