gpt4 book ai didi

javascript - 显示文本字段的结尾

转载 作者:行者123 更新时间:2023-11-28 14:40:14 25 4
gpt4 key购买 nike

我有一堆起始数据相同的文本字段,每个输入的前 2 打字符都是相同的。

结局不一样。

如何让文本框自动向右滚动以默认显示结尾?

最佳答案

@el toni 有一个很好的解决方案。但是,如果要求用户输入任何文本,textfield 将无法正常工作。 (光标会向左跳。)

<input dir="rtl" value="https://stackoverflow.com/questions/1962168/scroll-to-the-very-right-of-a-long-text-input">

(*以上来自 "Scroll" to the very right of a long text input @el toni)

您可以使用一些 js,以便当用户单击该字段时,重新建立文本输入的“正确方向”。然后在他/她点击关闭后将其改回另一个方向。

 $("#longInput").focus(function () {
$(this).attr('dir', 'ltr');
});
$("#longInput").blur(function () {
$(this).attr('dir', 'rtl');
});

http://jsfiddle.net/kjjL2/

关于javascript - 显示文本字段的结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6094295/

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