天天看点

CKeditor+JMEditor公式编辑器,解决界面上多个编辑器时候公式赋值错乱的问题

(1)将 CKeditor编辑器的config.js打开

config.js代码参考

CKEDITOR.editorConfig = function( config ) {
    config.extraPlugins = 'jdmath';
    config.allowedContent = true;
};
CKEDITOR.config.contentsCss = '/view/css/ck/plugins/jdmath/mathquill-0.10.1/mathquill.css'           
CKeditor+JMEditor公式编辑器,解决界面上多个编辑器时候公式赋值错乱的问题

(2)集成之后

CKeditor+JMEditor公式编辑器,解决界面上多个编辑器时候公式赋值错乱的问题
CKeditor+JMEditor公式编辑器,解决界面上多个编辑器时候公式赋值错乱的问题

(3)、界面上多个编辑器解决错乱的问题

打开路径 ..\jdmath\dialogs\jdmath.js的文件

将"jdmath_" + Math.ceil(Math.random() * 10) 代码换成生成Guid的代码即可

CKeditor+JMEditor公式编辑器,解决界面上多个编辑器时候公式赋值错乱的问题

 JsGuid()代码段

function JsGuid() {
    var s = [];
    var hexDigits = "0123456789abcdef";
    for (var i = 0; i < 36; i++) {
        s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
    }
    s[14] = "4";  // bits 12-15 of the time_hi_and_version field to 0010
    s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);  // bits 6-7 of the clock_seq_hi_and_reserved to 01
    s[8] = s[13] = s[18] = s[23] = "-";

    var uuid = s.join("");
    return uuid;
}
           

继续阅读