名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
最近在使用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 { '<':'<', '&':'&', '"':'"', '>':'>', "'":''' }[a] } }) : ''; }, |
html:function (str) { return str ? str.replace(/&((g|l|quo)t|amp|#39|nbsp);/g, function (m) { return { '<':'<', '&':'&', '"':'"', '>':'>', ''':"'", ' ':' ' }[m] }) : ''; }, |
修复相关具体操作方法:
第二个相关具体操作方法html
修改成
html:function (str) { return str ? str.replace(/&((g|l|quo)t|#39|nbsp|ldquo|rdquo|amp);/g, function (m) { return { '<':'<', '"':'"', '>':'>', ''':"'", ' ':' ', '“':'"', '”':'"', '&':'&' }[m] }) : ''; }, |
备注
如果替换后无效,请检查你引用的是否是 ueditor.all.min.js
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。DEDECMS开启SSL及支持多站点后缩略图错误变成域名重复绝对地址的取消相关具体操作方法