Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.3k views
in Technique[技术] by (71.8m points)

jquery - mention plugin in tinymce keeps continued text inside html tag

I am using the plugin here for tinymce mentions so when I type @ it shows JSON results and i can select from the list.

https://github.com/StevenDevooght/tinyMCE-mention

I added this code, which returns the selected value and name in a <span> html tag.

insert: function(item) {
    return '<span class="mention" id="' + item.sequence + '">@' + item.name + '</span>';
},

Problem is, its inserting the selected value as expected, but when I continue typing in the textarea, it remains inside the value of the <span> tag.

Once the item has been selected, I want to continue the typing outside of the tag.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...