0 0 0

Xiuno BBS各种编辑器适配笔记

陈哥 V UID:1 飞升期创始人
2025-05-04 248

编辑器适配问题,例如:积分插件 阅读插件 网易音乐插件

UM.getEditor

var editor=window.parent.window. UM.getEditor( ' message ');
editor.setContent('[xnbuy] '+xn_buy+'[/xnbuy]',1);
 
 

Tinymce 5

tinyMCE.editors['message'];
editor.setContent('[xnbuy]'+xn_buy+'[/xnbuy]', 1);
 
 

Tinymce 6

tinymce.activeEditor.insertContent['message'];
tinyMCE.activeEditor.insertContent( ' [xnbuy]' + xn_buy +'[ /xnbuy]', 1);
 
 

注意修改切换完成后清除缓存然后ctrl+f5强制刷新,这样更有效奥

 

 

 

最新回复 (0)

    暂无评论

请先登录后发表评论!

返回
请先登录后发表评论!