gpt4 book ai didi

javascript - 将字母添加到文本区域的末尾

转载 作者:行者123 更新时间:2023-11-28 19:18:04 27 4
gpt4 key购买 nike

即使用户尝试将光标放在中间,我也想在文本区域中当前措辞的末尾添加新输入的键盘输入。

最佳答案

试试这段对我有用的代码片段。 jsfiddle here

  $("#InputAtLast").keyup(function(e) {
this.selectionStart = this.selectionEnd = this.value.length;
});
$("#InputAtLast").focus(function(e) {
this.selectionStart = this.selectionEnd = this.value.length;
});
$("#InputAtLast").click(function(e) {
this.selectionStart = this.selectionEnd = this.value.length;
});

有关更多选项,请尝试此链接 Click here.

关于javascript - 将字母添加到文本区域的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29454885/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com