0
我正在努力關注編輯器內容。它將焦點置於內容的開始處,但應該在內容之後。你能建議我如何將焦點位置移動到文本的末尾嗎?TinyMCE錯誤焦點位置
<html>
<body>
<textarea id="mytextarea">
The focus will appear before this text. Should be after.
</textarea>
<script>
tinymce.init({
selector: '#mytextarea',
menubar: false,
});
setTimeout(function() {
tinymce.execCommand('mceFocus');
}, 2000)
</script>
</body>
</html>
這裏是工作示例https://jsfiddle.net/iosipov83/o10ut0g1/
[上tinyMCE的錯誤焦點位置]的可能的複製( http://stackoverflow.com/questions/43179508/wrong-focus-position-on-tinymce) –