我有以下事件监听器,我似乎找不到保存粘贴数据的ev
对象中的任何内容。
editor.on('beforePaste', function(ev)
{
console.log( ev );
});
我可以,如果是,那我该如何检索发布的数据呢?
答案 0 :(得分:3)
在访问数据之前触发beforePaste
。您只能在editor#paste
中找到它们:
editor.on( 'paste', function( evt ) {
console.log( evt.data.dataValue );
} );