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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…