如何使用jquery从指针的当前位置向文本框添加文本?
Posted
技术标签:
【中文标题】如何使用jquery从指针的当前位置向文本框添加文本?【英文标题】:How to add a text to a textbox from the current position of the pointer with jquery? 【发布时间】:2013-04-05 06:55:35 【问题描述】:我有一个包含一些单词和文本的文本框。我想做的是,当用户单击按钮时,从指针的当前位置向文本框的文本添加一些单词。如何做到这一点? 这是文本框和按钮:
<textarea id="txt" rows="15" cols="70">There is some text here.</textarea>
<input type="button" id="btn" value="OK" />
【问题讨论】:
Inserting a text where cursor is using javascript/jquery的可能重复 查看这个答案:***.com/questions/1064089/… Insert text into textarea with jQuery的可能重复 ***.com/questions/3308292/…的完整工作功能 【参考方案1】:也许更短的版本,http://jsfiddle.net/NaHTw/4/ 会更容易理解?
jQuery("#btn").on('click', function()
var caretPos = document.getElementById("txt").selectionStart;
var textAreaTxt = jQuery("#txt").val();
var txtToAdd = "stuff";
jQuery("#txt").val(textAreaTxt.substring(0, caretPos) + txtToAdd + textAreaTxt.substring(caretPos) );
);
【讨论】:
这里更新为使用文本框而不是文本区域:jsfiddle.net/NaHTw/1049【参考方案2】:很巧,我只是在几分钟前回答了类似的question。您可以使用这样的自定义函数:
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();
)
);
基本上,此插件允许您在多个 textbox
或 textarea
的插入符号处插入一段文本。你可以这样使用它:
$('#element1, #element2, #element3, .class-of-elements').insertAtCaret('text');
Working Demo
【讨论】:
以上是关于如何使用jquery从指针的当前位置向文本框添加文本?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 jquery 从输入文本数组中检测当前输入文本的索引