【发布时间】:2015-10-18 14:08:38
【问题描述】:
我之前已经在堆栈溢出时问过这个问题,但没有得到答案。我有 2 个链接,称为添加表情符号 1 和添加表情符号 2。 这是我之前的问题。 Insert smiley at cursor position
现在,即使我进行了某些更改,这里的问题是笑脸只插入到 div 的末尾而不是光标位置。 我的新演示在:https://jsfiddle.net/ftwbx88p/8/
$( document ).on( "click" , "#button" , function() {
$( ".editable.focus" ).append( '<img src="https://cdn.okccdn.com/media/img/emojis/apple/1F60C.png"/>' );
});
我希望将笑脸插入到光标所在的相应内容可编辑 div 中。提前致谢。
Note: I had a contenteditable div where I want to add image and not in the textarea.
【问题讨论】: