如何使用jquery和focus函数把光标定位到input中文字的最后?
在做ajax无刷新修改时,需要在编辑的时候,将光标定位到input文本框中文字的最后面。这里介绍如何使用jquery和focus函数把光标定位到input中文字的最后的方法?
代码如下:
<script src="jquery.js"></script>
<script>
$(function(){
str = $("#aaa").val();
$("#aaa").val("").focus().val(str);
});
</script>
<input type="text" value="123456789" id="aaa" />
代码如下:
<script src="jquery.js"></script>
<script>
$(function(){
str = $("#aaa").val();
$("#aaa").val("").focus().val(str);
});
</script>
<input type="text" value="123456789" id="aaa" />
中国· 上海
添加微信咨询
CopyRight©2009-2019 上海谷谷网络科技有限公司 All Rights Reserved. 沪ICP备11022482号-8
- top
- 在线咨询
-
添加微信咨询