下面的脚本将文本插入文本区域的末尾。我需要换到 在文本区域中当前光标位置之后插入文本。
jQuery(document).ready(function($){
$('#addCommentImage').click(function(){
var imageLoc = prompt('Enter the Image URL:');
if ( imageLoc ) {
$('#comment').val($('#comment').val() + '[img]' + imageLoc + '[/img]');
}
return false;
});
});
答案 0 :(得分:22)
如果以上不起作用(在我的情况下不是 - 可能我的配置稍有不同),这是另一个解决方案:
您可以使用此扩展功能获取位置:
(function ($, undefined) {
$.fn.getCursorPosition = function () {
var el = $(this).get(0);
var pos = 0;
if ('selectionStart' in el) {
pos = el.selectionStart;
} else if ('selection' in document) {
el.focus();
var Sel = document.selection.createRange();
var SelLength = document.selection.createRange().text.length;
Sel.moveStart('character', -el.value.length);
pos = Sel.text.length - SelLength;
}
return pos;
}
})(jQuery);
用法是:var position = $("#selector").getCursorPosition()
在位置插入文字:
var content = $('#selector').val();
var newContent = content.substr(0, position) + "text to insert" + content.substr(position);
$('#selector').val(newContent);
就是这样。
答案 1 :(得分:13)
您可以结帐this answer。 insertAtCaret
jquery插件看起来非常好。
答案 2 :(得分:3)
我已经修改了这些版本的各种版本,以便提供一个版本,在您选择的内容之前放置第一个文本,在您选择的内容之后放置第二个文本,并保持选中的内容仍然被选中。这适用于chrome和FF,但不适用于IE。
jQuery.fn.extend({
insertAtCaret: function(myValue, myValueE){
return this.each(function(i) {
if (document.selection) {
//For browsers like Internet Explorer
this.focus();
sel = document.selection.createRange();
sel.text = myValue + myValueE;
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(startPos,endPos)+myValueE+this.value.substring(endPos,this.value.length);
this.focus();
this.selectionStart = startPos + myValue.length;
this.selectionEnd = ((startPos + myValue.length) + this.value.substring(startPos,endPos).length);
this.scrollTop = scrollTop;
} else {
this.value += myValue;
this.focus();
}
})
}
});
使用方法:
$('#box').insertAtCaret("[Before selection]", "[after]");
另外:不要以任何方式声称这是我的。