读取onBeforePaste或onPaste粘贴的数据

Reading pasted data onBeforePaste or onPaste

本文关键字:数据 onPaste onBeforePaste 读取      更新时间:2023-09-26

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

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

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

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

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