0
私はエディターの内容に集中しようとしています。フォーカスの位置はコンテンツの先頭に置かれますが、コンテンツの後ろにある必要があります。フォーカスの位置をテキストの最後に移動する方法を教えてください。あなたは以下を追加することができますinitをここで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>
はあなたのTinyMCEのではhttps://jsfiddle.net/iosipov83/o10ut0g1/
[TinyMCEの上の誤ったフォーカス位置]の可能性のある重複( http://stackoverflow.com/questions/43179508/wrong-focus-position-on-tinymce) –