はい、可能です。これは、あなたが探していることを正確に行うために使用している関数です
// myfield: the DOM element that you need to interact with
// myValue: the text to be instered
function insertAtCursor(myField, myValue) {
//IE support
if (document.selection) {
myField.focus();
sel = document.selection.createRange();
sel.text = myValue;
}
//MOZILLA/NETSCAPE support
else if (myField.selectionStart || myField.selectionStart == '0') {
var startPos = myField.selectionStart;
var endPos = myField.selectionEnd;
myField.value = myField.value.substring(0, startPos)
+ myValue
+ myField.value.substring(endPos, myField.value.length);
} else {
myField.value += myValue;
}
}
あなたがする必要があるのは、テキストボックス/テキストエリアを最初のパラメーターとして渡し、テキストを2番目のパラメーターとして渡すことだけです.BOOM、それは機能しています!!
更新:実例: http://jsbin.com/owesik/1/edit