如何使用 jQuery 将光标位置设置在文本字段中字符串的末尾?
我正在使用 jQuery 1.6,并且我有一个文本字段,我希望在该字段接收焦点后将光标定位在字符串\文本的末尾。有没有一个微不足道或容易做到这一点?
此时我正在使用以下代码:
$jQ('#css_id_value').focus(function(){
this.select();
});
$jQ('css_id_value').focus();
I am using jQuery 1.6 and I have a text field for which I would like the cursor to be positioned at the end of the string\text after the field receives focus. Is there a trivial or easy to do this?
At this time I am using the following code:
$jQ('#css_id_value').focus(function(){
this.select();
});
$jQ('css_id_value').focus();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://jsfiddle.net/hn8EY/
应该可以做到。
或者(因为我不知道你在这里追求什么:P)
http://jsfiddle.net/hn8EY/
that should do it.
and alternatively (because I have no clue what your after here :P)
使用下面的代码:
希望这对您有帮助
Use below code:
Hope this help for you