要在插入符号中插入字符,可以使用 JavaScript 的 selectionStart
和 selectionEnd
属性获取插入符号的位置,然后使用 value.slice()
方法获取插入符号前后的文本,并将要插入的字符添加到文本中。最后,将新的文本设置为输入框的值。
以下是一个示例代码:
function insertTextAtCursor(inputElement, textToInsert) {
// 获取插入符号的位置
const start = inputElement.selectionStart;
const end = inputElement.selectionEnd;
// 获取插入符号前后的文本
const originalText = inputElement.value;
const textBefore = originalText.slice(0, start);
const textAfter = originalText.slice(end);
// 将要插入的字符添加到文本中
const newText = textBefore + textToInsert + textAfter;
// 将新的文本设置为输入框的值
inputElement.value = newText;
// 将插入符号移动到插入的字符后面
inputElement.selectionStart = inputElement.selectionEnd = start + textToInsert.length;
}
// 示例用法
const inputElement = document.querySelector('input');
insertTextAtCursor(inputElement, 'Hello, world!');
在这个示例中,insertTextAtCursor()
函数接受一个输入框元素和要插入的文本,然后将文本插入到输入框的插入符号位置。
领取专属 10元无门槛券
手把手带您无忧上云