2

我正在使用这个 html 代码:

<textarea id="furmul" style="height: 300px;"></textarea>
<button type="button" id="ok">OK</button>

我使用这些行将文本添加到简单文本区域的指针的当前位置:

jQuery.fn.extend({
insertAtCaret: function(myValue){
  return this.each(function(i) {
    if (document.selection) {
      //For browsers like Internet Explorer
      this.focus();
      sel = document.selection.createRange();
      sel.text = myValue;
      this.focus();
    }
    else if (this.selectionStart || this.selectionStart == '0') {
      //For browsers like Firefox and Webkit based
      var startPos = this.selectionStart;
      var endPos = this.selectionEnd;
      var scrollTop = this.scrollTop;
      this.value = this.value.substring(0, startPos)+myValue+this.value.substring(endPos,this.value.length);
      this.focus();
      this.selectionStart = startPos + myValue.length;
      this.selectionEnd = startPos + myValue.length;
      this.scrollTop = scrollTop;
    } else {
      this.value += myValue;
      this.focus();
    }
  })
}
});

但正如您所知,我们应该使用为 tinyMCE 添加值

tinyMCE.activeEditor.setContent(myValue)

为了获得 tinyMCE 内容,我们使用:

tinyMCE.get(id).getContent()

不,问题是insertAtCaret我应该在哪里替换上面的代码以添加myValue到tinyMCE中指针的当前位置?

这个Demo可以帮助你。

谢谢。

4

1 回答 1

2

您可以使用 tinymce API

tinymce.get('your_textarea_id').execCommand('insertHTML', false, my_value);

看看你改变的小提琴:http: //jsfiddle.net/gHN8G/13/

于 2013-07-26T11:33:19.733 回答