javascript – 在tinyMce中激活keyPressEvent

我正在Moodle(电子学习)中定制tinyMCE.我添加了一个工具栏按钮,将焦点设置到文本区域并在其中添加两个美元符号.
我需要的是在这些标志之间放置光标,以便用户可以在它们之间开始输入.
可能最好的办法就是按照左箭头编程,不是吗?但我无法弄清楚如何做到这一点.
这是代码:

tinyMCE.init({
mode : "textareas",
theme : "advanced",
theme_advanced_buttons1 : "mybutton,bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,undo,redo,link,unlink",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
plugins : 'inlinepopups',
setup : function(ed) {
    // Add a custom button
    ed.addButton('mybutton', {
        title : 'My button',
        image : 'img/example.gif',
        onclick : function() {
            ed.focus();
            ed.selection.setContent('$$');
        }
    });
}

});
谢谢

解决方法:

这应该做你想要的:

ed.addButton('mybutton', {
    title : 'My button',
    image : 'img/example.gif',
    onclick : function() {  
        ed.focus();
        ed.selection.setContent('$<span id="my_marker">\u200b</span>$');
        var $marker = $(ed.getBody()).find('#my_marker');
        ed.selection.select($marker.get(0));
        $marker.remove();
    }
});
上一篇:javascript – 删除TinyMCE格式菜单标签


下一篇:php – 如何在wordpress MCE编辑器中添加自定义选项和按钮