前端开发您现在的位置是:首页 > 博客日志 > 前端开发

在ueditor编辑器的光标停留处插入内容

<a href='mailto:'>微wx笑</a>的头像微wx笑 2022-08-28前端开发 0 0关键字: ueditor  

插入内容的方式
newstext.execCommand('inserthtml', '要插入的内容');
newstext.setContent('要追加的内容',true);

在ueditor编辑器的光标停留处插入内容GyL无知

插入内容的方式GyL无知

newstext.execCommand('inserthtml', '要插入的内容');GyL无知

newstext.setContent('要追加的内容',true);GyL无知

newstext为Ueditor的实例,获取实例的方法:GyL无知

var newstext  = UE.getEditor('editor');GyL无知


GyL无知

       if( nKeyCode == 13 && bCtrlKeyCode  ) { // ctrl+enter
           window.setTimeout(function () {
                var dt = new Date();
                var tm = "";
                if (dt.getHours() < 10){
                   tm += "0" +  dt.getHours();
                }else{
                   tm += "" +  dt.getHours();
                }
                if (dt.getMinutes() < 10){
                   tm += ":0" +  dt.getMinutes();
                }else{
                   tm += ":" +  dt.getMinutes();
                }
                tm += "&nbsp;";
                newstext.execCommand('inserthtml', tm);
                //newstext.setContent(tm,true);
            }, 100);
       }


GyL无知

本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/front/2022-08-28/1364.html

很赞哦! () 有话说 ()