jQuery:如何聚焦于输入文本字段,使光标放置在文本末尾?

发布于 2024-12-06 08:49:34 字数 453 浏览 1 评论 0原文

考虑以下示例:(此处演示

HTML:

<input type="text" />
<div>Click here to set focus</div>

JS:

$(function() {
    $("input").val("Hello");
    $("div").click(function() {
        $("input").focus();
    });
});

div 为单击,光标位于文本的开头:|Hello

如何将光标设置在文本末尾: Hello|

Consider the following example: (demo here)

HTML:

<input type="text" />
<div>Click here to set focus</div>

JS:

$(function() {
    $("input").val("Hello");
    $("div").click(function() {
        $("input").focus();
    });
});

When the div is clicked, the cursor positioned at the beginning of the text: |Hello.

How could I set the cursor at the end of the text: Hello| ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

辞别 2024-12-13 08:49:34

我认为您正在寻找 selectionStart

I think you are looking for selectionStart.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文