我在这里找到了 JQuery InsertAtCaret 函数但是没有详细说明如何使用它。我已经尝试了很多以了解如何使用它,但找不到任何方法。这是功能。
$.fn.insertAtCaret = function(myValue) {
return this.each(function() {
var me = this;
if (document.selection) { // IE
me.focus();
sel = document.selection.createRange();
sel.text = myValue;
me.focus();
} else if (me.selectionStart || me.selectionStart == '0') { // Real browsers
var startPos = me.selectionStart, endPos = me.selectionEnd, scrollTop = me.scrollTop;
me.value = me.value.substring(0, startPos) + myValue + me.value.substring(endPos, me.value.length);
me.focus();
me.selectionStart = startPos + myValue.length;
me.selectionEnd = startPos + myValue.length;
me.scrollTop = scrollTop;
} else {
me.value += myValue;
me.focus();
}
});
};
我有一个文本框输入字段和它下面的文本区域。我应该在哪里调用这个函数,我应该给它什么值。我必须在哪里提供我的文本区域的参考。