我对QuillEditor(我有多个编辑)以下,脚本:
var editors = {};
function editors() {
var toolbarOptions = [
[{'list': 'ordered'}, {'list': 'bullet'}],
];
data.forEach(function (el) {
editors[el] = new Quill(el['editor'], {modules: {toolbar: toolbarOptions}, theme: 'snow', scrollingContainer:el['quill'] });
editors[el].on('text-change', copyText(el['text'], editors[el]));
});
}
}
function copyText(text, editor) {
text.innerHTML = editor.root.innerHTML;
console.log(text.innerHTML)
}
要在后端使用它,我复制从编辑到一个文本文字copyText(el['text']
我需要一直工作,但在执行功能时,它应对的text / html,只有一次。 我期待编辑[EL]。对(“文本的变化”,就像一个事件监听工作。
该scrollingContainer
,不滚动。 我检查目标的存在,是编辑的父。