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&apos, v.length);
r.select();
}
}
function insertAtEnd (el, txt) {
el.value += txt;
setCaretToEnd (el);
}
</script>
</head>
<body>





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



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






http://www.faqts.com/knowledge_base/view.phtml/aid/17749/fid/53
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章