selection.getContent()在Chrome / TinyMCE 4.0内联编辑模式下不起作用

时间:2013-06-24 13:48:09

标签: tinymce tinymce-4

我正在尝试在TinyMCE 4.0中获取用户选择的内容。在Firefox中一切正常,但在Chrome中,selection.getContent()返回NULL。 我正在使用内联TinyMCE模式(正常模式工作正常)。

var selectedContent = editor.selection.getContent();
if(!selectedContent){
    alert('Please select some text first!');
    return null;
}

你有什么建议如何解决这个问题吗?

0 个答案:

没有答案