阅读粘贴数据onBeforePaste或onPaste

时间:2013-06-07 12:55:32

标签: javascript ckeditor paste

我有以下事件监听器,我似乎找不到保存粘贴数据的ev对象中的任何内容。

editor.on('beforePaste', function(ev)
{
    console.log( ev );
});

我可以,如果是,那我该如何检索发布的数据呢?

1 个答案:

答案 0 :(得分:3)

在访问数据之前触发beforePaste。您只能在editor#paste中找到它们:

editor.on( 'paste', function( evt ) {
    console.log( evt.data.dataValue );
} );