简体   繁体   中英

CKEditor5 getSelectedElement()

I am working with CKEditor 5 (Baloon Editor) and trying get selected text. How can I do it?

I tried below code and got NULL:

editor.model.change( writer => {
    var selection = editor.model.document.selection;
    console.log(selection.getSelectedElement());             
} );

Thanks for help.

I guess, selection.getSelectedElement() returns null for text elements. It returns an element object when figure objects selected. You can use

selection.getFirstPosition().parent 

or

Array.from(selection.getSelectedBlocks())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM