联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
js自动填充content字段
类型:迅睿CMS 更新时间:2024-03-21 15:51:28 自动填充

我想使用js获取内容自动填充到“内容”字段,但是由于内容这块使用的是编辑器(默认的或百度的),根据他的id好像无法自动填充进去,哪位大神帮忙看看要怎么弄呢

function fillContentToEditor() {

    // 获取输入框内容

    var inputContent = document.getElementById('dr_yuanbiaoti').value;


    // 填充到 ueditor 编辑器

    var editor = UE.getEditor('Ueditor'); // 假设 ueditor 编辑器实例名为 'editor'

    editor.setContent(inputContent);

}