JS 字符串 作为变量名
Posted 认真生活、快乐工作 - 马云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 字符串 作为变量名相关的知识,希望对你有一定的参考价值。
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 字符串 作为变量名的主要内容,如果未能解决你的问题,请参考以下文章