1

因为我在 HTML 代码中有多个文本区域,所以我通过 Javascript 传递 id 值来检索每个文本区域中的数据。但是,在 JS 函数中,“CKEDITOR.instances.id”没有按预期表示,例如 CKEDITOR.instances.editor_1、CKEDITOR.instances.editor_2 或 CKEDITOR.instances.editor_4,因此,我没有任何检索到的数据。任何人都知道如何解决这个问题,请告诉我。非常感谢。

HTML 代码:

    <textarea name="edit_1"></textarea>
    <input type="button" value="submit" onClick="getValue('edit_1')" />
    <textarea name="edit_2"></textarea>
    <input type="button" value="submit" onClick="getValue('edit_2')" />
    <textarea name="edit_2"></textarea>
    <input type="button" value="submit" onClick="getValue('edit_3')" />

JS代码:

    var getValue = function(id) {
        var content = CKEDITOR.instances.id.getData();
        alert(content);
    };
4

2 回答 2

8

尝试在 id 之间添加 []

var getValue = function(id) {
    var content = CKEDITOR.instances[id].getData();
    alert(content);
};
于 2013-02-04T14:38:46.887 回答
0

我必须做这样的事情,因为我正在将事件绑定到具有多个实例的操作。并试图获取数据,但它总是会为除最后一个之外的任何一个返回 null ......虽然使用事件(e.editor)有效。

var editors = CKEDITOR.instances;
    for (var x in editors) {
      if (editors[x]) {
        var thisName = editors[x].name;
        if (editors[thisName]) {
          editors[thisName].on('focus', function (e) {
            socket.emit('ckeditor_field_type_edit', user, e.editor.name);
          });
          editors[thisName].on('key', function (e) {
            var data = e.editor.getData();
            socket.emit('ckeditor_field_type_typing', user, e.editor.name, data);
          });
          editors[thisName].on('blur', function (e) {
            var data = e.editor.getData();
            setTimeout(function () {
              socket.emit('ckeditor_field_type_edit_finish', user, e.editor.name, data);
            }, 1000);
          });
        }
      }
    }
于 2018-09-21T06:01:47.400 回答