• ueditor问题


    问题:单引号被转译,引号转译问题

    解决:ueditor.all.js文件中,修改下面的代码即可

    unhtml:function (str, reg) {
            return str ? str.replace(reg || /[&<">'](?:(amp|lt|quot|gt|#39|nbsp);)?/g, function (a, b) {
                if (b) {
                    return a;
                } else {
                    return {
                        '<':'&lt;',
                        '&':'&amp;',
                        '"':'&quot;',
                        '>':'&gt;',
                        "'":'&#39;'
                    }[a]
                }
    
            }) : '';
        },
    原文链接:https://blog.csdn.net/wanghao3616/java/article/details/25816747

    问题:<li> 标签内自动添加 <p> 的解决方法

    解决:注释15159 行开始的 utils.each 函数

    问题:ueditor内容编辑自动嵌套p标签

    解决:配置写br

  • 相关阅读:
    CF1462E2 Solution
    CF1450D Solution
    CF1451D Solution
    CF1442B Solution
    CF1453C Solution
    CF1455D Solution
    linux服务器部署node项目
    原生javascript实现 hasClass addClass removeClass
    图片加载完执行函数
    MySQL
  • 原文地址:https://www.cnblogs.com/single-man/p/12607568.html
Copyright © 2020-2023  润新知