引用符を挿入しようとしていて、カーソルをエディタの最後に移動しようとしています。現在、引用符を挿入すると、カーソルが引用符の中で終わるので、入力を開始する場合は、ユーザーは引用したいものを追加します。SCEditorを使用してカーソルをテキストの最後に設定する
私はこれを行う方法を見つけ出すために、私は、私はここで
を理解して引用とは思わないdocumentationは私の現在のコードです:
$(document.body).on('click', '.action.quote', function() {
var $target = $($(this).data('target'));
var editor = $('#reply-body').sceditor('instance');
var bodyText = $target.html();
editor.insert('[quote=author]' + bodyText + '[/quote]');
editor.focus();
smoothScroll('#new-comment');
});
は、これを実行する簡単な方法はありますか?私はSCEditorの新機能ですので、私には全く新しいものです
んこのヘルプを、? https://www.sceditor.com/documentation/custom-bbcodes/#format + https://www.sceditor.com/documentation/custom-commands/#exec – brunoais
私はそれが私が探しているものではない。私は引用符を挿入することができますが、カーソルの位置は[/引用符]の後ろではなく、そのタグの直前です。タイプすると、 – Ben