这是此问题的代码:How to use TinyMCE functions on text without actually selecting that text? - 我们是否可以只拥有与浏览器/平台兼容的版本?
tinyMCE.init({
...
setup : function(ed) {
ed.onInit.add(function(ed, evt) {
ed.getBody().setAttribute('contenteditable', false);
var range = ed.selection.dom.createRng();
range.setStartBefore(ed.getBody().firstChild);
range.setEndAfter(ed.getBody().lastChild);
ed.selection.setRng(range);
});
}
});
它可以在我的机器上运行,但我发现对于某些人来说,TinyMCE可编辑的容器中的文本不会自动全部被选中,尽管它们使用的是最近的浏览器(最新的IE或其中一个)最近的FF版本)。我们怎样才能确定它是什么?