// 获取当前选区
export const HandleGetSelection = (id)=>{
const obj = {
rng:tinymce.activeEditor.selection.getRng() ,// 当前选区
txt:window.tinymce.get(id).selection.getContent({ format: 'text' })// 选中文本
}
return obj
}
// 获取当前选区
export const HandleGetSelection = (id)=>{
const obj = {
rng:tinymce.activeEditor.selection.getRng() ,// 当前选区
txt:window.tinymce.get(id).selection.getContent({ format: 'text' })// 选中文本
}
return obj
}