码迷,mamicode.com
首页 > Web开发 > 详细

JS 字符串 作为变量名

时间:2019-02-16 17:01:02      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:quick   get   sele   tool   tor   code   字符   doc   native   

function initCKEditor(querySelector,content_val,myEditor) {
    ClassicEditor.create(document.querySelector(querySelector), {
        toolbar: ["undo", "redo", "|", "alignment", "bold", "italic", "blockQuote", "imageTextAlternative", "imageUpload", "heading", "link", "numberedList", "bulletedList"],
        ckfinder: {
            uploadUrl: '/admin.php/Common/ck_editor?command=QuickUpload&type=Files&responseType=json'
        }
    }).then(editor => {
        // 设置初始值
        editor.setData(content_val);
        window[myEditor] = editor;
    }).catch(error => {
        console.error(error);
    });
}

window[myEditor] = editor;
将传入的字符串,直接变量名使用!

JS 字符串 作为变量名

标签:quick   get   sele   tool   tor   code   字符   doc   native   

原文地址:https://www.cnblogs.com/jiqing9006/p/10388249.html

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