textarea 光标插入文字

Posted 树叶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textarea 光标插入文字相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta charset="utf-8" />
<head>
<title></title>
</head>
<body>

<textarea id="test" />改个需求。</textarea>
<input type="button" onclick="tt(‘呵呵‘)" value="aa" />
<script type="text/javascript">
    function tt(val) {
    var val = val;
    var test = document.getElementById(‘test‘);
    if(document.selection) { //ie 8,9,10
    test.focus();
    sel = document.selection.createRange();
    sel.text = val;
    test.focus();
} else {
    if(test.selectionStart || test.selectionStart == ‘0‘) { //光标开始的位置
    var startPos = test.selectionStart;
    var endPos = test.selectionEnd;
    var scrollTop = test.scrollTop;
    console.log(startPos)
    test.value = test.value.substring(0, startPos) + val + test.value.substring(endPos, test.value.length);
    test.focus();
    test.selectionStart = startPos + val.length; //设置鼠标开始位置
    test.selectionEnd = startPos + val.length; //设置鼠标结束位置
    test.scrollTop = scrollTop; //插入的文字显示在滚动条内
    } else {
    test.value += val;
    test.focus();
    }
}
}
</script>

</body>

</html>

可参考 https://blog.csdn.net/mafan121/article/details/78519348

以上是关于textarea 光标插入文字的主要内容,如果未能解决你的问题,请参考以下文章

如何在textarea的光标位置插入文字

JavaFX:在进入 TextArea 时将插入符号/光标放在 TextArea 的末尾

jsp中,textarea 光标默认左顶端以及默认没有滚动条

jQuery textarea - 插入模式光标位置

使用JS在textarea在光标处插入内容

Jquery在textarea的文字焦点中插入文字