`
dengyin2000
  • 浏览: 1212793 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

How can I move text cursor in a text input field?

阅读更多
Thanks the following codes. while in Firefox, you just need to invoke textElement.focus() method.

So here is how to position the caret end the end of a text field/text
area with IE4/5:

<script>
function setCaretToEnd (el) {
if (el.createTextRange) {
var v = el.value;
var r = el.createTextRange();
r.moveStart(&aposcharacter', v.length);
r.select();
}
}
function insertAtEnd (el, txt) {
el.value += txt;
setCaretToEnd (el);
}
</script>








ONCLICK="insertAtEnd (this.form.aText,
this.form.a2ndText.value);"
>




ONCLICK="insertAtEnd (this.form.aTextArea,
this.form.a3rdText.value);"
>


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics