QQ扫一扫联系
                            
                        
默认使用了UEditor作为富文本编辑
引入JS
ModStart::js('asset/common/editor.js')
初始化富文本
初始化HTML
    // 全功能
    MS.editor.basic('content');
    // 精简
    MS.editor.simple('content');
使用示例
new MS.selectorDialog({
    server: "",
    callback: function (items) {
        console.log("选择了", items);
    }
}).show();
在弹出的 Iframe 页面中需要通过以下方法来触发关闭并回调
parent.__selectorDialogItems = items;
parent.layer.closeAll();