猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
如何获取ckeditor 5中选定文本的HTML代码?
如何在 ckeditor 5 中获取所选文本的 HTML?
在 ckeditor 4 中有 getHTML() 方法。第五版中的模拟是什么?
皈依舞
浏览 298
回答 3
3回答
海绵宝宝撒
您可以使用DataController#stringify使用getSelectedContent将文档片段中的 HTML 字符串化import getSelectedContent from "@ckeditor/ckeditor5-engine/src/model/utils/getselectedcontent";export default class CK5Utils{ static getSelectedHtml(ed) { const {model, data, model:{document:{selection}}} = ed; const range = selection.getFirstRange(); if (range.end.isEqual(range.start)) { return ''; } const selected = getSelectedContent(model, selection); return data.stringify(selected); }}
0
0
0
饮歌长啸
按照 Alexandros Kyriakos 的建议,使用DataController#stringify和getSelectedContent,也可以这样做:let sHtmlSelection = this.editor.data.stringify(this.editor.model.getSelectedContent(this.editor.model.document.selection));
0
0
0
叮当猫咪
您可以抓取某个范围内的选定文本,但要获取 HTML,就有点棘手了。我能够抓住 thename并parent通过switch语句运行该值。注意:下面的代码已从此处改编:“在 CKEDITOR 5 中获取突出显示/选定的文本”const resultArea = document.querySelector('.selected');let globalEditor;ClassicEditor .create(document.querySelector('#editor')) .then(editor => globalEditor = editor) .catch(error => console.error(error));const formatNode = (node) => { switch (node.parent.name) { case 'heading1' : return `<h1>${node.data}</h1>`; case 'heading2' : return `<h2>${node.data}</h2>`; case 'heading3' : return `<h3>${node.data}</h3>`; case 'paragraph' : return `<p>${node.data}</p>`; default : return ''; }};const getSelectedHTML = (editor) => [...editor.model.document.selection.getFirstRange().getItems()] .filter(node => node.data) .map(formatNode) .join('\n');document.querySelector('.btn').addEventListener('click', e => { resultArea.value = getSelectedHTML(globalEditor);});<!-- https://cdn.ckeditor.com/#ckeditor5 --><script src="https://cdn.ckeditor.com/ckeditor5/23.1.0/classic/ckeditor.js"></script><div id="editor"> <h1>This is a heading</h1> <p>This is some sample content.</p></div><p> <button class="btn">Get Selected HTML</button></p><textarea class="selected" rows="8" cols="72"></textarea>
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
JavaScript
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续