30/09/2018, 17:06

[jquery] cách chuyển con trỏ chuột vào wysiwyg editor?

mình có viết đoạn editor sau:
HTML :

    <div class="wysiwyg-editor">
            <div class="wysiwyg-controls">
            <a href='#' data-role='bold'>B</a>
            <a href='#' data-role='italic'>I</a>
            <a href='#' data-role='underline'>U</a>
            <a href='#' data-role='justifyleft'><i class="menu-left"></i></a>
            <a href='#' class="latext" data-role='latext'>Latext</a>
       </div><div id="data-status" class="wysiwyg-content" contenteditable></div></div>

JQuery :

	$('.wysiwyg-controls a').on('click', function(e) {
    e.preventDefault();
    document.execCommand($(this).data('role'), false);
});
$('a.latext').click(function(event) {
    var text = $('.wysiwyg-content').html();
    //alert(text);
    text = text+ '@@ /code latext / @@';
    $('.wysiwyg-content').html(text);
});

mình viết sự kiện khi click vào nút latext thì chèn đoạn “@@/code latext/@@” vào editor , mình muốn đồng thời focus con trỏ vào giữa 2 dấu @@ nhưng không biết làm sao ?

Làm giàu, làm giàu, làm giàu..... viết 19:07 ngày 30/09/2018

sao lại spam thêm 1 topic vậy bạn.

Trọng viết 19:13 ngày 30/09/2018

bị lỗi mạng bị ngắt mình không biết.

Mai Anh Dũng viết 19:08 ngày 30/09/2018

This topic is now unlisted. It will no longer be displayed in any topic lists. The only way to access this topic is via direct link.

Bài liên quan
0